文件类在哪个目录中查找文件?我的代码在一个单独的项目中工作。我有文件项目。种子在源目录和更高的目录。我很确定是个小东西。希望我没有说得太含糊。
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)
file类在哪个目录中查找文件?
查找当前目录,通常是从启动java的目录
你可以通过
读取它System.out.println(System.getProperty("user.dir"));