Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一种方法,该方法需要指向 Eclipse 中我的 src 目录结构中的文件的字符串路径。这个文件的路径是简单的 src\fileName.txt 还是有不同的方式我应该得到这个文件,因为它目前似乎没有工作
谢谢
运行此程序,您将永远不会忘记如何记住。
文件 file = new File("sample.txt"); System.out.println(file.getAbsolutePath());
如果您遵循 maven 标准目录结构,类文件将相对于类路径定位,如下所示:
如果你愿意SomeClass.class,你可以通过com.mydomain.packageorappname.deeperpackage.SomeClass. 这就是你要问的吗?
SomeClass.class
com.mydomain.packageorappname.deeperpackage.SomeClass