有一个测试程序
public class Path {
public static void main(String[] args) {
System.out.println("user.dir=" + System.getProperty("user.dir"));
System.out.println(Path.class.getResource(Path.class.getSimpleName() + ".class").toString());
}
}
输出:
user.dir=/home/stas/ява
file:/home/stas/%d1%8f%d0%b2%d0%b0/Path.class
如何正确使用第二种方式读取文件路径?