如何在Eclipse(Java)中获取包的路径

时间:2017-05-12 09:34:43

标签: java eclipse

我目前正在阅读Java中的txt文件,该文件位于包含scanner对象的包中。

要接收文件位置,我使用快速而肮脏的方法:

File currentDirectory = new File(new File(".").getAbsolutePath());
String location = currentDirectory.getAbsolutePath().replace(".", "")+"\\corefiles\\src\\filereadingexample\\";  
  • 有更好的方法吗?

我想改进我的代码。

问候 J

1 个答案:

答案 0 :(得分:0)

获取当前的指向路径

String currentDirPath = System.getProperty("user.dir");

String ohterPackages = currentDirPath + File.separator + "filereadingexample\\fileName.txt";

用户主目录

String homePath = System.getProperty("user.home");