文件类在哪个目录中查找文件?我的代码在一个单独的项目中工作。我在源目录和更高目录中有文件project2.torrent。我很确定它很小。希望我不要模糊。
java.io.FileNotFoundException: project2.torrent (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:146)
at RUBTClient.parsing(RUBTClient.java:31)
at RUBTClient.main(RUBTClient.java:17)
答案 0 :(得分:1)
文件类在哪个目录中查找文件?
它查看当前目录,通常是从java启动的位置
您可以通过
阅读System.out.println(System.getProperty("user.dir"));