从指定的相对路径遍历目录中的所有文件
Iterate over all files in directory from a specified relative path
我想使用这种 "relative" 路径,因为我希望能够将此目录中的所有文件作为其他人可以下载的 github 项目的一部分包含在内,并且只需要 运行。
所以我只想在结构 ../
中向上跳一次,然后向下进入那里的一个目录,word_lists_1
并读出所有文件。
6第
虽然这段代码一直在崩溃。这是为什么?
public static void main(String[] args)
{
ArrayList<File> arrayList = new ArrayList<File>();
final String directoryName = "../word_lists_1";
listf( directoryName, arrayList );
for(File elem : arrayList)
{
System.out.println(elem+" ");
}
}
public static void listf(String directoryName, ArrayList<File> files)
{
File directory = new File(directoryName);
// get all the files from a directory
File[] fList = directory.listFiles();
for (File file : fList)
{
if (file.isFile())
{
files.add(file);
}
else if (file.isDirectory())
{
listf(file.getAbsolutePath(), files);
}
}
}
这是错误信息:
Exception in thread "main" java.lang.NullPointerException
at Main.listf(Main.java:49)
at Main.main(Main.java:27)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
所以它不喜欢行 49
这是:
for (File file : fList)
这是我从你的要求中了解到的
- 你在当前执行目录,然后你想遍历
返回一个目录并按名称进入其他文件夹
"word_lists_1"
如果我正确理解你的问题,我会像
那样实现它
String str=System.getProperty("user.dir");
String filePath = str+"/../word_lists_1";
如果你在其他目录中,那么你可以这样做
String str=Paths.get(".").toAbsolutePath().normalize().toString();
String filePath = str+"/../word_lists_1";
希望对您有所帮助!
祝你好运!
您可能需要文件 规范路径 来相应地解析父级并避免任何未解析的路径,这可能需要某些存在 null
,因此 NullPointerException
.
将目录从实际路径解析为当前目录然后显示其树层次结构的简单实现如下:
public class Main
{
public static void main( String[] args ) throws URISyntaxException, IOException
{
File currentDir = new File( "." ); // Read current file location
File targetDir = null;
if (currentDir.isDirectory()) {
File parentDir = currentDir.getCanonicalFile().getParentFile(); // Resolve parent location out fo the real path
targetDir = new File( parentDir, "word_lists_1" ); // Construct the target directory file with the right parent directory
}
if ( targetDir != null && targetDir.exists() )
{
listDirectoryAndFiles( targetDir.toPath() );
}
}
private static void listDirectoryAndFiles( Path path ) throws IOException
{
DirectoryStream<Path> dirStream = Files.newDirectoryStream( path );
for ( Path p : dirStream )
{
System.out.println( p.getFileName() );
if ( p.toFile().isDirectory() )
{
listDirectoryAndFiles( p );
}
}
}
}
您可能只需要调整 listDirectoryAndFiles(java.nio.file.Path)
方法来满足您的需要。
请注意,上述实现使用 Java 7 中新的 I/O 功能。
我想使用这种 "relative" 路径,因为我希望能够将此目录中的所有文件作为其他人可以下载的 github 项目的一部分包含在内,并且只需要 运行。
所以我只想在结构 ../
中向上跳一次,然后向下进入那里的一个目录,word_lists_1
并读出所有文件。
6第
虽然这段代码一直在崩溃。这是为什么?
public static void main(String[] args)
{
ArrayList<File> arrayList = new ArrayList<File>();
final String directoryName = "../word_lists_1";
listf( directoryName, arrayList );
for(File elem : arrayList)
{
System.out.println(elem+" ");
}
}
public static void listf(String directoryName, ArrayList<File> files)
{
File directory = new File(directoryName);
// get all the files from a directory
File[] fList = directory.listFiles();
for (File file : fList)
{
if (file.isFile())
{
files.add(file);
}
else if (file.isDirectory())
{
listf(file.getAbsolutePath(), files);
}
}
}
这是错误信息:
Exception in thread "main" java.lang.NullPointerException
at Main.listf(Main.java:49)
at Main.main(Main.java:27)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
所以它不喜欢行 49
这是:
for (File file : fList)
这是我从你的要求中了解到的
- 你在当前执行目录,然后你想遍历 返回一个目录并按名称进入其他文件夹 "word_lists_1"
如果我正确理解你的问题,我会像
那样实现它String str=System.getProperty("user.dir");
String filePath = str+"/../word_lists_1";
如果你在其他目录中,那么你可以这样做
String str=Paths.get(".").toAbsolutePath().normalize().toString();
String filePath = str+"/../word_lists_1";
希望对您有所帮助!
祝你好运!
您可能需要文件 规范路径 来相应地解析父级并避免任何未解析的路径,这可能需要某些存在 null
,因此 NullPointerException
.
将目录从实际路径解析为当前目录然后显示其树层次结构的简单实现如下:
public class Main
{
public static void main( String[] args ) throws URISyntaxException, IOException
{
File currentDir = new File( "." ); // Read current file location
File targetDir = null;
if (currentDir.isDirectory()) {
File parentDir = currentDir.getCanonicalFile().getParentFile(); // Resolve parent location out fo the real path
targetDir = new File( parentDir, "word_lists_1" ); // Construct the target directory file with the right parent directory
}
if ( targetDir != null && targetDir.exists() )
{
listDirectoryAndFiles( targetDir.toPath() );
}
}
private static void listDirectoryAndFiles( Path path ) throws IOException
{
DirectoryStream<Path> dirStream = Files.newDirectoryStream( path );
for ( Path p : dirStream )
{
System.out.println( p.getFileName() );
if ( p.toFile().isDirectory() )
{
listDirectoryAndFiles( p );
}
}
}
}
您可能只需要调整 listDirectoryAndFiles(java.nio.file.Path)
方法来满足您的需要。
请注意,上述实现使用 Java 7 中新的 I/O 功能。