1.获取resouces中文件的绝对路径
String filePath = XXX.class.getClassLoader().getResource("/configs/interface/..").getPath();File file = new File(filePath);
本文共 194 字,大约阅读时间需要 1 分钟。
1.获取resouces中文件的绝对路径
String filePath = XXX.class.getClassLoader().getResource("/configs/interface/..").getPath();File file = new File(filePath);
转载于:https://www.cnblogs.com/Gyoung/p/5412107.html