jar 包下读取resource路径
2021-10-15 本文已影响0人
空格键_尘
String filePath = this.class.getClassLoader().getResource(pth).getFile();
File file = new File(filePath);
上面的方式在本地运行通过,但是打成jar就无法读取
改成一下方式
InputStream in = this.class.getClassLoader().getResourceAsStream(path);
byte[] bytes = toByteArray(in);