resources文件夹中的文件不会经过编译, 但是会和编译后的字节码文件打包到jar包中.
获取resources文件夹中的文件的路径方法:
String filePath = this.getClass().getClassLoader().getResource(“文件名”).getPath(); 1 1
String filePath = this.getClass().getClassLoader().getResource("文件名").getPath();
resources文件夹中的文件不会经过编译, 但是会和编译后的字节码文件打包到jar包中.
获取resources文件夹中的文件的路径方法:
String filePath = this.getClass().getClassLoader().getResource(“文件名”).getPath(); 1 1
String filePath = this.getClass().getClassLoader().getResource("文件名").getPath();