ClassLoader读取文件,springboot打jar包后读取不到
程序员文章站
2022-04-28 09:10:15
...
jar:file:/D:/test/test/.metadata/.plugins/org.eclipse.wst.server.core/test/test/test/WEB-INF/lib/test-0.0.1-SNAPSHOT.jar!/ca.crt
在你的项目中可能经常会使用ClassLoader.getSystemResourceAsStream等方法来读取一个文件内容,使用properties来读取。
但是当你打包后会发现你程序出现了问题,这个时候怎么办呢?
**解决**可以尝试一下以下的代码来获取文件,内容可自行修改,逻辑比较简单,就是获取相对地址然后得到文件
//s是地址+文件名 from fhadmin.cn
private File loadNewFromResources(String s) {
File file = new File( s);
try {
if (!file.exists()) {
file.createNewFile();
InputStream fileInput = SampleServerStartup.class.getClassLoader().getResourceAsStream( s);
//from fhadmin.cn
//file = File.createTempFile(s,"");
System.out.println(file.getPath());
System.out.println(file.getCanonicalPath());
System.out.println(file.getName());
//System.out.println("length:"+fileInput.available());
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = 0;
while ((len = fileInput.read(buffer)) != -1) {
baos.write(buffer, 0, len);
}
fileInput.close();
//System.out.println(content); //from fhadmin.cn
FileOutputStream fileout = new FileOutputStream(file);
baos.writeTo(fileout);
baos.close();
fileout.close();
}
} catch (IOException e) {
e.printStackTrace();
}
return file;
}
为什么要这样处理,因为在你打包后通过File f=new File(“上述路径—相对路径”);来获取文件时会发现FileNotFoundException
可以通过getResourceAsStream()读取到文件流—只可读取
因为这不是文件资源定位符的格式 (在jar中资源有其专门的URL格式为: jar:!/{entry} )。
如果jar包中的类源代码用File f=new File(相对路径);的形式,是找不到文件资源的。
上一篇: 兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法
下一篇: fatal: ‘origin/xxx‘ is not a commit and a branch ‘xxx‘ cannot be created from it
推荐阅读
-
解决SpringBoot打成jar运行后无法读取resources里的文件问题
-
关于Springboot打成JAR包后读取外部配置文件的问题
-
springboot 运行 jar 包读取外部配置文件的问题
-
springboot 打jar 包部署时 读取外部配置文件
-
springboot 打jar 包部署时 读取外部配置文件
-
解决SpringBoot打成jar运行后无法读取resources里的文件问题
-
springboot打包jar文件运行后无法读取jar目录中的Excel模板文件
-
【解决方案】springboot 打jar包后启动,resource下配置文件找不到
-
Springboot打jar包无法读取resource下文件
-
java读取文件程序打jar包后出现乱码