我目前正在阅读Java中的txt文件,该文件位于包含scanner对象的包中。
要接收文件位置,我使用快速而肮脏的方法:
File currentDirectory = new File(new File(".").getAbsolutePath());
String location = currentDirectory.getAbsolutePath().replace(".", "")+"\\corefiles\\src\\filereadingexample\\";
我想改进我的代码。
问候 J
答案 0 :(得分:0)
获取当前的指向路径
String currentDirPath = System.getProperty("user.dir");
String ohterPackages = currentDirPath + File.separator + "filereadingexample\\fileName.txt";
用户主目录
String homePath = System.getProperty("user.home");