class.getResource().getpath()

有时候想要获取资源文件路径,用getResource总是获取不到路径,那是因为getResource的路径是相对于编译后的target目录,而不是文件中的resources目录。
所以在写参数时,要写相对于编译后的classes路径。
String path = Main.class.getResource("config").getPath().replaceFirst("/", "");
config和Main类在同一目录

image.png

你可能感兴趣的:(class.getResource().getpath())