23

我有几个小时的问题,我尝试了我在教程中找到的所有解决方案。很简单:我无法访问资源文件。我尝试打开我放入的文件src/main/resourcessrc/test/resources.

我有一个简单的 Java 项目,我使用 Maven,将 Eclipse 作为 IDE,并带有 m2e 插件。我想使用 Maven 的资源过滤,使用不同的配置文件,还有我的POM.xml

<build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>2.3.2</version>
      <configuration>
    <source>1.5</source>
    <target>1.5</target>
    <debug>false</debug>
    <optimize>true</optimize>
      </configuration>
    </plugin>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-resources-plugin</artifactId>
      <version>2.4</version>
      <configuration>
    <encoding>UTF-8</encoding>
      </configuration>
    </plugin>
  </plugins>

  <filters>
    <filter>src/main/filters/${env}.properties</filter>
  </filters>

  <resources>
    <resource>
      <directory>src/main/resources</directory>
      <filtering>true</filtering>
    </resource>
    <resource>
      <directory>src/test/resources</directory>
      <filtering>true</filtering>
    </resource>
  </resources>
</build>

<profiles>
  <profile>
    <id>LOCAL</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <properties>
      <env>local</env>
    </properties>
      </profile>
</profiles>

我做了一个简单的测试,在 src/java/test :

@Test
public void testOpenResourceFile() {
    File testf=new File("/test.txt");
    assertTrue(testf.exists());
}

因此,在 Eclipse 中,我运行(在我的项目文件夹中,在包视图中):

  • 运行方式 > Maven 构建 > 流程资源
  • 运行方式 > Maven 构建 > 流程测试资源
  • 运行方式 > Maven 构建 > 编译

使用环境:本地

在测试中,我这样做: Run as > Junit Test Case。但它失败了......我查看了 Maven 生成的 target/test-classes 目录,文件 test.txt 在那里。

是我在项目编译过程中遗漏了一些步骤,还是我的配置有问题?

编辑:我也
尝试过。File("test.txt")File("../test.txt")

4

4 回答 4

43

在我看来你的问题是

File testf = new File( "/test.txt" );

test.txt那是在计算机文件系统的根目录中寻找一个文件。您想要的是资源树的根,您可以通过以下getResource方法获得:

File testf = new File( this.getClass().getResource( "/test.txt" ).toURI() );

或者,在静态上下文中,使用包含类的名称:

File testf = new File( MyClass.class.getResource( "/test.txt" ).toURI() );

当然,您需要在该示例中添加错误处理。

于 2013-11-11T22:33:25.453 回答
5

我遇到了同样的问题,只需确保“text.txt”文件位于测试项目的资源文件夹(src/test/resources/text.txt)中,而不是任何其他资源文件夹中。此外,您应该从资源文件夹中检索文件,如下所示:

this.getClass().getClassLoader().getResource("text.txt").getFile();

如果这仍然不起作用,请尝试在您useSystemClassLoader的.maven-surefire-pluginpom.xml

http://maven.apache.org/surefire/maven-surefire-plugin/examples/class-loading.html

于 2015-11-06T15:39:02.343 回答
5

检查你<build>在 pom.xml 中的标签,它应该是这样的,遇到同样的问题,并在为我工作的时候添加这个<resources>标签。<build>

<build>
    <resources>
        <resource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
        </resource>
    </resources>
</build>
于 2017-05-23T06:26:47.477 回答
0

我为这项工作做了这个方法:

public static String getPropaccess(String key){
    String value="";
    Properties configFile = new Properties();
    try {
        configFile.load(Propaccess.class.getClassLoader().getResourceAsStream("test/resources/config.properties"));
        value = configFile.getProperty(key);
        return value;
    } catch (IOException e) { 
        e.printStackTrace();
    }
    return value;
}
于 2016-06-15T07:31:05.193 回答