我的Maven项目的pom.xml如下所示:
<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>groupId</groupId>
<artifactId>artifactId</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
</project>
在src / main / resources目录我有一个名为test的文件。 在src /主/ java目录我有一个包含以下行的类:
System.out.println(this.getClass().getResourceAsStream("test"));
当代码行是在Eclipse中运行,我得到的输出
java.io.BufferedInputStream@1cd2e5f
当我出口项目为.jar和运行它,我得到的输出
null
我有没有配置任何东西错了吗?