我试图读取在CLASSPATH系统变量中设置的文本文件。不是用户变量。

我试图获得输入流文件如下:

将文件目录(D:\myDir)放在CLASSPATH中,然后尝试如下操作:

InputStream in = this.getClass().getClassLoader().getResourceAsStream("SomeTextFile.txt");
InputStream in = this.getClass().getClassLoader().getResourceAsStream("/SomeTextFile.txt");
InputStream in = this.getClass().getClassLoader().getResourceAsStream("//SomeTextFile.txt");

将文件(D:\myDir\SomeTextFile.txt)的完整路径放在CLASSPATH中,并尝试上面的3行代码。

但不幸的是,他们都没有工作,我总是得到null到我的输入流。


当前回答

当使用Spring框架时(作为实用工具或容器的集合—您不需要使用后一种功能),您可以轻松地使用Resource抽象。

Resource resource = new ClassPathResource("com/example/Foo.class");

通过Resource接口,您可以以InputStream、URL、URI或File的形式访问资源。将资源类型更改为文件系统资源,只需更改实例即可。

其他回答

我的回答与问题中所问的不完全一样。相反,我给出了一个解决方案,我们可以很容易地从我们的项目类路径读取文件到java应用程序。

例如,假设配置文件example.xml位于如下路径

com.myproject.config.dev

我们的Java可执行类文件在下面的路径:-

com.myproject.server.main

now just check in both the above path which is the nearest common directory/folder from where you can access both dev and main directory/folder (com.myproject.server.main - where our application’s java executable class is existed) – We can see that it is myproject folder/directory which is the nearest common directory/folder from where we can access our example.xml file. Therefore from a java executable class resides in folder/directory main we have to go back two steps like ../../ to access myproject. Now following this, see how we can read the file:-

package com.myproject.server.main;

class Example {

  File xmlFile;

  public Example(){
       String filePath = this.getClass().getResource("../../config/dev/example.xml").getPath();
       this.xmlFile = new File(filePath);
    }

  public File getXMLFile() {
      return this.xmlFile;
  }
   public static void main(String args[]){
      Example ex = new Example();
      File xmlFile = ex.getXMLFile();
   }
}

你必须把你的“系统变量”放在Java类路径上。

这是我如何读取我的类路径上的文本文件的所有行,使用Java 7 NIO:

...
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;

...

Files.readAllLines(
    Paths.get(this.getClass().getResource("res.txt").toURI()), Charset.defaultCharset());

注意,这是如何做到这一点的一个例子。你必须做出必要的改进。此示例仅在文件实际出现在您的类路径中时有效,否则当getResource()返回null并对其调用. touri()时将抛出NullPointerException。

另外,从Java 7开始,指定字符集的一种方便方法是使用Java .nio.charset. standardcharsets中定义的常量 (根据它们的javadocs,它们“保证在Java平台的每个实现上都可用”)。

因此,如果您知道文件的编码为UTF-8,则显式指定字符集StandardCharsets。UTF_8

当使用Spring框架时(作为实用工具或容器的集合—您不需要使用后一种功能),您可以轻松地使用Resource抽象。

Resource resource = new ClassPathResource("com/example/Foo.class");

通过Resource接口,您可以以InputStream、URL、URI或File的形式访问资源。将资源类型更改为文件系统资源,只需更改实例即可。

使用org.apache.commons.io.FileUtils.readFileToString(新文件("src/test/resources/sample-data/fileName.txt"));