gpt4 book ai didi

java - 如何读取项目内的txt文件?

转载 作者:太空宇宙 更新时间:2023-11-04 14:25:26 27 4
gpt4 key购买 nike

我希望使我的项目中的任何文件都可以被任何用户读取,考虑到他们不会与我有相同的目录。

所以我有这个:

String filme = "somefile.txt"

String datastr = "";
reader = new BufferedReader( new FileReader("C:/Path"+filename));
String line = reader.readLine();
while( line != null) {
datastr += line + "\n";
line = reader.readLine();
}

如有任何帮助,我们将不胜感激。提前致谢

最佳答案

简单来说,ClassLoader 就是答案:

ClassLoader cl = Thread.currentThread().getContextClassLoader();URL rsc = cl.getResource("MyFile.txt");File f = new File(rsc.getPath());

但这里有关于这个主题的更多答案 here , herehere只是为了快速搜索。使用搜索! ;-)

关于java - 如何读取项目内的txt文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26723341/

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