其他分享
首页 > 其他分享> > 读取 jar 包内的文件

读取 jar 包内的文件

作者:互联网

不能直接使用

File file = new File(path);

方式来读取。资源文件打包到 jar 内,路径类似

file:/root/webservice-0.0.1-SNAPSHOT-jar-with-dependencies.jar!/resources/sharepointApp.xml

这是 java URL 的形式,报 FileNotFoundException 错误。
使用类加载器的 getResource 方法来获取:

InputStream in=MyClass.class.getClassLoader().getResource(filename).openStream();

若要使用文件夹路径获取,只能将文件放在 jar 包外,不要打包进 jar 内。

标签:文件,file,读取,包内,getResource,jar,File
来源: https://blog.csdn.net/weixin_37562241/article/details/104689712