在JAR文件

时间:2016-08-26 13:40:26

标签: java eclipse jar

我的应用程序加载了PROJECTNAME/resource文件夹中的txt文件。

enter image description here

以下是我加载文件的方式:

URL url = getClass().getClassLoader().getResource("batTemplate.txt");
java.nio.file.Path resPath;
String bat = "";

try {
    resPath = java.nio.file.Paths.get(url.toURI());
    bat = new String(java.nio.file.Files.readAllBytes(resPath), "UTF8");
} catch (URISyntaxException | IOException e1) {
        e1.printStackTrace();
}

注意:当我从Eclipse运行时,这种方法有效,而当我导出到Jar文件时(在生成的JAR中提取所需的lib。)时则不行。 我知道该文件正在被提取,因为它在JAR文件中。图像也有效。

enter image description here

错误MSG:

Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException:
    Illegal character in path at index 38: file:/C:/DataTransformation/Reports Program/ReportsSetup.jar
        at com.sun.nio.zipfs.ZipFileSystemProvider.uriToPath(ZipFileSystemProvider.java:87)
        at com.sun.nio.zipfs.ZipFileSystemProvider.getFileSystem(ZipFileSystemProvider.java:166)
        at com.sun.nio.zipfs.ZipFileSystemProvider.getPath(ZipFileSystemProvider.java:157)
        at java.nio.file.Paths.get(Unknown Source)
        at ReportSetup$13.mouseReleased(ReportSetup.java:794)

我也在这里查看了类似的问题,但它们引用了JAR文件之外的文件/ URL。

2 个答案:

答案 0 :(得分:2)

.jar条目不是文件;它是.jar存档的一部分。无法将资源转换为Path。您需要使用getResourceAsStream来阅读它。

要阅读所有内容,您有几个选择。您可以使用扫描仪:

try (Scanner s = new Scanner(getClass().getClassLoader().getResourceAsStream("batTemplate.txt"), "UTF-8")) {
    bat = s.useDelimiter("\\Z").next();
    if (s.ioException() != null) {
        throw s.ioException();
    }
}

您可以将资源复制到临时文件:

Path batFile = Files.createTempFile("template", ".bat");
try (InputStream stream = getClass().getClassLoader().getResourceAsStream("batTemplate.txt")) {
    Files.copy(stream, batFile);
}

您只需从InputStreamReader中读取文本:

StringBuilder text = new StringBuilder();
try (Reader reader = new BufferedReader(
    new InputStreamReader(
        getClass().getClassLoader().getResourceAsStream("batTemplate.txt"),
        StandardCharsets.UTF_8))) {

    int c;
    while ((c = reader.read()) >= 0) {
        text.append(c);
    }
}

String bat = text.toString();

答案 1 :(得分:1)

我认为你应该尝试使用getClass()。getResourceAsStream(" /batTemplate.txt")。

同时检查this。可能有帮助。