Java Jar文件:使用资源错误:URI不分层

我已将我的应用程序部署到jar文件。当我需要将数据从一个资源文件复制到jar文件外部时,请执行以下代码:

URL resourceUrl = getClass().getResource("/resource/data.sav");

File src = new File(resourceUrl.toURI()); //ERROR HERE

File dst = new File(CurrentPath()+"data.sav"); //CurrentPath: path of jar file don't include jar file name

FileInputStream in = new FileInputStream(src);

FileOutputStream out = new FileOutputStream(dst);

// some excute code here

我遇到的错误是:URI is not hierarchical。在IDE中运行时,我不会遇到此错误。

如果我将上述代码更改为对StackOverFlow上其他帖子的一些帮助,请执行以下操作:

InputStream in = Model.class.getClassLoader().getResourceAsStream("/resource/data.sav");

File dst = new File(CurrentPath() + "data.sav");

FileOutputStream out = new FileOutputStream(dst);

//....

byte[] buf = new byte[1024];

int len;

while ((len = in.read(buf)) > 0) { //NULL POINTER EXCEPTION

//....

}

回答:

你不能做这个

File src = new File(resourceUrl.toURI()); //ERROR HERE

它不是文件!从ide运行时,不会有任何错误,因为你没有运行jar文件。在IDE中,类和资源被提取到文件系统上。

但是你可以通过InputStream以下方式打开一个:

InputStream in = Model.class.getClassLoader().getResourceAsStream("/data.sav");

删除"/resource"。通常,IDE在文件系统类和资源上分开。但是创建jar时,它们会全部放在一起。因此,文件夹级别"/resource"仅用于类和资源分离。

当从类加载器中获取资源时,必须指定该资源在jar中的路径,即真正的包层次结构。

以上是 Java Jar文件:使用资源错误:URI不分层 的全部内容, 来源链接: utcz.com/qa/433863.html

回到顶部