gpt4 book ai didi

java - 在目录中构建文件数组

转载 作者:行者123 更新时间:2023-12-02 16:16:30 25 4
gpt4 key购买 nike

这在 Java 中是如何完成的?我希望创建一个文件名数组以在程序中输出,这些文件将是我的主目录中的文件。

到目前为止我已经:

File[] fileList = new File(user.home).listFiles()

这就是我所需要的吗?

然后,要打印这些文件,我可以这样做吗:

int i = 0;
while (fileList.getNext() != null) {
System.out.println(filelist[i]
i++
}

非常感谢。

最佳答案

看来你是对的。我已经把你的代码组合得更干净了。

File[] fileList = new File(System.getProperty("user.home")).listFiles();
for (int i=0;i < fileList.length;i++) {
System.out.println(fileList[i]);
}

关于java - 在目录中构建文件数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5259872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com