在我的 Java 应用程序中,我需要获得一些文件和目录。
这是程序结构:
./main.java
./package1/guiclass.java
./package1/resources/resourcesloader.java
./package1/resources/repository/modules/ -> this is the dir I need to get
./package1/resources/repository/SSL-Key/cert.jks -> this is the file I need to get
guiclass
加载将加载我的资源(目录和文件)的 resource cesloader 类。
至于文件,我试过了
resourcesloader.class.getClass().getResource("repository/SSL-Key/cert.jks").toString()
为了得到真正的路径,但这种方式不工作。
我不知道该目录使用哪个路径。