我有一个结构如下的Java项目:
我可以使用代码阅读hotels.csv
文件;
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("hotels.csv").getFile());
我的results.xml
输出文件也需要与图片中显示的文件夹相同。目前,我使用代码
StreamResult result = new StreamResult(new File("src/main/resources/result.xml"));
如何通过只说文件名,例如result.xml
来编程,并使用该程序获取路径?
我在论坛中看到了同一个问题的帖子,并且在关注后没有得到任何结果。我将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>com.test</groupId>
<artifactId>Trivago</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>${RESOURCE_PATH}</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<packaging>jar</packaging>
<name>Trivago</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Use the latest version whenever possible. -->
<jackson.version>2.4.4</jackson.version>
<RESOURCE_PATH>${project.basedir}/src/main/resources</RESOURCE_PATH>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</project>
稍后尝试使用该方法按照建议获取资源文件夹的路径,
private static String getResourcePath() {
try {
URI resourcePathFile = System.class.getResource("/RESOURCE_PATH").toURI();
String resourcePath = Files.readAllLines(Paths.get(resourcePathFile)).get(0);
// System.out.println("resourcePath = " + resourcePath);
URI rootURI = new File("").toURI();
URI resourceURI = new File(resourcePath).toURI();
URI relativeResourceURI = rootURI.relativize(resourceURI);
return relativeResourceURI.getPath();
} catch (Exception e) {
return null;
}
}
莱特,我打算用
StreamResult result = new StreamResult(new File(getResourcePath() +"/result.xml"));
我在运行此命令行java.lang.NullPointerException
URI resourcePathFile = System.class.getResource("/RESOURCE_PATH").toURI();
更新:我还运行post
中建议的mvn generate-resources process-resources
命令
答案 0 :(得分:0)
你不能,也不应该这样做。 src/main/resources
目录在运行时不存在 - 资源被映射到jar文件到与.class
文件相同的文件夹结构中,根文件包位于jar文件的根目录中。
src/main/anything
。
如果您需要,可以创建临时目录,或者您可以写入高清上的已知位置,但这些都是不好的解决方案。相反,您应该将输出写入标准输出并使用linux(或dos)管道工具将其重定向到用户指定的路径和文件。接下来最好的事情是从环境变量中获取目标文件位置。