我想从我的 jar 中读取资源,如下所示:
File file;
file = new File(getClass().getResource("/file.txt").toURI());
BufferedReader reader = new BufferedReader(new FileReader(file));
//Read the file
它在 Eclipse 中运行时运行良好,但如果我将其导出到 jar 中,然后运行它,则会出现 IllegalArgumentException:
Exception in thread "Thread-2"
java.lang.IllegalArgumentException: URI is not hierarchical
我真的不知道为什么但是通过一些测试我发现如果我改变
file = new File(getClass().getResource("/file.txt").toURI());
至
file = new File(getClass().getResource("/folder/file.txt").toURI());
然后它的工作原理相反(它在 jar 中工作,但在 eclipse 中不工作)。
我正在使用 Eclipse,我的文件所在的文件夹位于类文件夹中。
getResourceAsStream
仍然是解决问题的更简单、更便携的解决方案。
与其尝试将资源作为 File 来处理,不如通过 getResourceAsStream 请求 ClassLoader 返回资源的 InputStream:
try (InputStream in = getClass().getResourceAsStream("/file.txt");
BufferedReader reader = new BufferedReader(new InputStreamReader(in))) {
// Use resource
}
只要 file.txt
资源在类路径中可用,那么无论 file.txt
资源是在 classes/
目录中还是在 jar
内,这种方法都将以相同的方式工作。
出现 URI is not hierarchical
是因为 jar 文件中资源的 URI 看起来像这样:file:/example.jar!/file.txt
。您无法像读取普通的旧 File 一样读取 jar
(zip
文件)中的条目。
答案很好地解释了这一点:
如何从 Java jar 文件中读取资源文件?
Java Jar 文件:使用资源错误:URI 不是分层的
要访问 jar 中的文件,您有两种选择:
将文件放在与您的包名称匹配的目录结构中(提取 .jar 文件后,它应该与 .class 文件在同一目录中),然后使用 getClass().getResourceAsStream("file.txt") 访问它
将文件放在根目录(提取.jar文件后,它应该在根目录),然后使用 Thread.currentThread().getContextClassLoader().getResourceAsStream("file.txt") 访问它
当 jar 用作插件时,第一个选项可能不起作用。
我之前遇到过这个问题,我为加载做了后备方式。基本上第一种方式在 .jar 文件中工作,第二种方式在 eclipse 或其他 IDE 中工作。
public class MyClass {
public static InputStream accessFile() {
String resource = "my-file-located-in-resources.txt";
// this is the path within the jar file
InputStream input = MyClass.class.getResourceAsStream("/resources/" + resource);
if (input == null) {
// this is how we load file within editor (eg eclipse)
input = MyClass.class.getClassLoader().getResourceAsStream(resource);
}
return input;
}
}
到目前为止(2017 年 12 月),这是我发现的唯一一个在 IDE 内部和外部都有效的解决方案。
使用 PathMatchingResourcePatternResolver
注意:它也适用于 spring-boot
在此示例中,我正在读取位于 src/main/resources/my_folder 中的一些文件:
try {
// Get all the files under this inner resource folder: my_folder
String scannedPackage = "my_folder/*";
PathMatchingResourcePatternResolver scanner = new PathMatchingResourcePatternResolver();
Resource[] resources = scanner.getResources(scannedPackage);
if (resources == null || resources.length == 0)
log.warn("Warning: could not find any resources in this scanned package: " + scannedPackage);
else {
for (Resource resource : resources) {
log.info(resource.getFilename());
// Read the file content (I used BufferedReader, but there are other solutions for that):
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(resource.getInputStream()));
String line = null;
while ((line = bufferedReader.readLine()) != null) {
// ...
// ...
}
bufferedReader.close();
}
}
} catch (Exception e) {
throw new Exception("Failed to read the resources folder: " + e.getMessage(), e);
}
就我而言,我终于做到了
import java.lang.Thread;
import java.io.BufferedReader;
import java.io.InputStreamReader;
final BufferedReader in = new BufferedReader(new InputStreamReader(
Thread.currentThread().getContextClassLoader().getResourceAsStream("file.txt"))
); // no initial slash in file.txt
getClass().getClassLoader().getResourceAsStream()
为我工作
问题是某些第三方库需要文件路径名而不是输入流。大多数答案都没有解决这个问题。
在这种情况下,一种解决方法是将资源内容复制到临时文件中。以下示例使用 jUnit 的 TemporaryFolder
。
private List<String> decomposePath(String path){
List<String> reversed = Lists.newArrayList();
File currFile = new File(path);
while(currFile != null){
reversed.add(currFile.getName());
currFile = currFile.getParentFile();
}
return Lists.reverse(reversed);
}
private String writeResourceToFile(String resourceName) throws IOException {
ClassLoader loader = getClass().getClassLoader();
InputStream configStream = loader.getResourceAsStream(resourceName);
List<String> pathComponents = decomposePath(resourceName);
folder.newFolder(pathComponents.subList(0, pathComponents.size() - 1).toArray(new String[0]));
File tmpFile = folder.newFile(resourceName);
Files.copy(configStream, tmpFile.toPath(), REPLACE_EXISTING);
return tmpFile.getAbsolutePath();
}
resourceName
应始终使用 /
作为分隔符,与 decomposePath
中的 File
操作使用系统特定的文件分隔符不同,该方法与 path.split("/")
相比不仅不必要地复杂,甚至是不正确的。此外,不清楚为什么在不使用结果时调用 .toArray(new String[0]))
。
folder
是什么,Lists
来自哪个库,REPLACE_EXISTING
是什么...?请提供有关您的帖子的完整信息。
确保使用正确的分隔符。我用 File.separator
替换了相对路径中的所有 /
。这在 IDE 中运行良好,但在构建 JAR 中不起作用。
我找到了解决办法
BufferedReader br = new BufferedReader(new InputStreamReader(Main.class.getResourceAsStream(path)));
将“Main”替换为您编写的 java 类。将“path”替换为 jar 文件中的路径。
例如,如果您将 State1.txt 放在包 com.issac.state 中,那么如果您运行 Linux 或 Mac,则键入路径为“/com/issac/state/State1”。如果您运行 Windows,则键入路径为“\com\issac\state\State1”。除非出现 File not found 异常,否则不要将 .txt 扩展名添加到文件中。
此代码适用于 Eclipse 和 Exported Runnable JAR
private String writeResourceToFile(String resourceName) throws IOException {
File outFile = new File(certPath + File.separator + resourceName);
if (outFile.isFile())
return outFile.getAbsolutePath();
InputStream resourceStream = null;
// Java: In caso di JAR dentro il JAR applicativo
URLClassLoader urlClassLoader = (URLClassLoader)Cypher.class.getClassLoader();
URL url = urlClassLoader.findResource(resourceName);
if (url != null) {
URLConnection conn = url.openConnection();
if (conn != null) {
resourceStream = conn.getInputStream();
}
}
if (resourceStream != null) {
Files.copy(resourceStream, outFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
return outFile.getAbsolutePath();
} else {
System.out.println("Embedded Resource " + resourceName + " not found.");
}
return "";
}
certPath
是什么?
最后我解决了错误:
String input_path = "resources\\file.txt";
input_path = input_path.replace("\\", "/"); // doesn't work with back slash
URL file_url = getClass().getClassLoader().getResource(input_path);
String file_path = new URI(file_url.toString().replace(" ","%20")).getSchemeSpecificPart();
InputStream file_inputStream = file_url.openStream();
您可以使用将从类路径读取的类加载器作为根路径(开头没有“/”)
InputStream in = getClass().getClassLoader().getResourceAsStream("file.txt");
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
由于某种原因,当我将 Web 应用程序部署到 WildFly 14 时,classLoader.getResource()
总是返回 null。从 getClass().getClassLoader()
或 Thread.currentThread().getContextClassLoader()
获取 classLoader 返回 null。
getClass().getClassLoader()
API 文档说,
“返回类的类加载器。某些实现可能使用 null 来表示引导类加载器。如果此类由引导类加载器加载,则此方法将在此类实现中返回 null。”
可能是如果您使用的是 WildFly 和您的 Web 应用程序,请试试这个
request.getServletContext().getResource()
返回了资源 URL。这里的 request 是 ServletRequest 的一个对象。
如果您使用的是spring,那么您可以使用以下方法从src/main/resources中读取文件:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.springframework.core.io.ClassPathResource;
public String readFileToString(String path) throws IOException {
StringBuilder resultBuilder = new StringBuilder("");
ClassPathResource resource = new ClassPathResource(path);
try (
InputStream inputStream = resource.getInputStream();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream))) {
String line;
while ((line = bufferedReader.readLine()) != null) {
resultBuilder.append(line);
}
}
return resultBuilder.toString();
}
下面的代码适用于 Spring boot(kotlin):
val authReader = InputStreamReader(javaClass.getResourceAsStream("/file1.json"))
如果您想作为文件阅读,我相信仍然有类似的解决方案:
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("file/test.xml").getFile());
file:
URL。
InputStream
是否存在(如File.exists()
),以便我的游戏可以判断是否使用默认文件。谢谢。getClass().getResource("**/folder**/file.txt")
使它起作用的原因是因为我将该文件夹与我的 jar 放在同一目录中:)。getResourceAsStream
将返回 null,以便您的“存在”测试。You cannot read the entries within a jar (a zip file) like it was a plain old File.
这很糟糕,因为有大量的库函数需要文件路径作为输入。