问题描述
通过Spring的ClassPathResource获取文件的时候,在idea上能正常运行,使用maven打包成jar文件后,报出以上异常。
File file = new ClassPathResource(filePath).getFile();
具体解释参看:
classpath-resource-not-found-when-running-as-jar
解决方法
使用resource.getInputStream()
替代以上方法。
问题描述
通过Spring的ClassPathResource获取文件的时候,在idea上能正常运行,使用maven打包成jar文件后,报出以上异常。
File file = new ClassPathResource(filePath).getFile();
具体解释参看:
classpath-resource-not-found-when-running-as-jar
解决方法
使用resource.getInputStream()
替代以上方法。
本文标题:java.io.FileNotFoundException: c
本文链接:https://www.haomeiwen.com/subject/uvbquhtx.html
网友评论