java - JAR 未正确使用资源 (maven)

标签 java maven jar build resources

我有一个 Java 应用程序,我已使用 Maven Shade 插件将其捆绑到 JAR 文件中。由于某种原因,当我从 target/运行 JAR 文件时,JAR 无法从资源文件夹中正确获取文件,从而引发 FileNotFoundException。

运行“java -jar target/speech2code-1.0-SNAPSHOT-fatjar.jar”时出现错误消息:

java.io.FileNotFoundException: file:/Users/mb/Desktop/Speech2Code-IDE/speech2code/target/speech2code-1.0-SNAPSHOT-fatjar.jar!/analyser/map.txt (No such file or directory)

我获取文件的代码行是:

File file = new File(getClass().getResource("/analyser/map.txt").getFile());

我的目录结构是(map.txt位于/src/main/resources/analysisr/map.txt中:

/src
    /main
        /java
        /resources
               /analyser
                   /map.txt
    /test

我的 POM 文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.mayur.speech2code</groupId>
<artifactId>speech2code</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.txt</include>
                <include>**/*.css</include>
                <include>**/*.fxml</include>
                <include>**/*.gram</include>
                <include>**/*.dict</include>
            </includes>
        </resource>
    </resources>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
                <finalName>${project.build.finalName}-fatjar</finalName>
                <transformers>
                    <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                        <mainClass>App</mainClass>
                    </transformer>
                </transformers>
            </configuration>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

    </plugins>
</build>
<repositories>
    <repository>
        <id>snapshots-repo</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases><enabled>false</enabled></releases>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
    <repository>
        <id>central</id>
        <url>http://repo1.maven.org/maven2/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>edu.cmu.sphinx</groupId>
        <artifactId>sphinx4-core</artifactId>
        <version>5prealpha-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>edu.cmu.sphinx</groupId>
        <artifactId>sphinx4-data</artifactId>
        <version>5prealpha-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>org.fxmisc.richtext</groupId>
        <artifactId>richtextfx</artifactId>
        <version>0.7-M2</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
    </dependency>
    <dependency>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.0.0</version>
        <type>maven-plugin</type>
    </dependency>
    <dependency>
        <groupId>org.reflections</groupId>
        <artifactId>reflections</artifactId>
        <version>0.9.10</version>
    </dependency>
    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.6</version>
    </dependency>
</dependencies>
</project>

任何帮助将不胜感激!

最佳答案

所以我应该使用InputStream 来读取资源,而不是将其转换为Java 中的文件。我更改了上面的代码,它可以使用 InputStream 运行。感谢 MadProgrammer 和 Bagus Tesa!

关于java - JAR 未正确使用资源 (maven),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43461978/

相关文章:

java - 为什么我不能在 Java 中将对象转换为集合?

java - 如何在static main中使用非静态方法(观察者方法)

module - 如何在maven多模块项目中仅运行父pom.xml

java - Spring @Scheduled 在 @Configuration 类中

java - Android 对服务器进行 PATCH/PUT

java - Spring Boot项目中的Eclipse "cannot resolve type"

Maven 未授权,ReasonPhrase :Unauthorized

java - 将 Android 项目转换为 JAR 文件

java - 在Java中,如何在外部文件之前加载jar中的资源?

java - 访问 JAR 文件中默认包中的类