如何读取一个文本文件资源到Java单元测试?

我有一个单元测试,需要使用位于src/test/resources/abc.xml的XML文件。将文件内容放入String中最简单的方法是什么?

357584 次浏览

首先确保abc.xml被复制到你的输出目录。然后你应该使用getResourceAsStream():

InputStream inputStream =
Thread.currentThread().getContextClassLoader().getResourceAsStream("test/resources/abc.xml");

获得InputStream后,只需将其转换为字符串。这个资源将其拼写出来:http://www.kodejava.org/examples/266.html。但是,我将摘录相关代码:

public String convertStreamToString(InputStream is) throws IOException {
if (is != null) {
Writer writer = new StringWriter();


char[] buffer = new char[1024];
try {
Reader reader = new BufferedReader(
new InputStreamReader(is, "UTF-8"));
int n;
while ((n = reader.read(buffer)) != -1) {
writer.write(buffer, 0, n);
}
} finally {
is.close();
}
return writer.toString();
} else {
return "";
}
}

最后我找到了一个简洁的解决方案,感谢Apache Commons:

package com.example;
import org.apache.commons.io.IOUtils;
public class FooTest {
@Test
public void shouldWork() throws Exception {
String xml = IOUtils.toString(
this.getClass().getResourceAsStream("abc.xml"),
"UTF-8"
);
}
}

完美的工作。文件src/test/resources/com/example/abc.xml被加载(我使用Maven)。

如果你用"/foo/test.xml"替换"abc.xml",这个资源将被加载:src/test/resources/foo/test.xml

你也可以使用Cactoos:

package com.example;
import org.cactoos.io.ResourceOf;
import org.cactoos.io.TextOf;
public class FooTest {
@Test
public void shouldWork() throws Exception {
String xml = new TextOf(
new ResourceOf("/com/example/abc.xml") // absolute path always!
).asString();
}
}

在文件中假设UTF8编码-如果不是,只需要忽略“UTF8”参数&将使用 每种情况下底层操作系统的默认字符集

快速的方法在JSE 6 -简单&没有第三方库!

import java.io.File;
public class FooTest {
@Test public void readXMLToString() throws Exception {
java.net.URL url = MyClass.class.getResource("test/resources/abc.xml");
//Z means: "The end of the input but for the final terminator, if any"
String xml = new java.util.Scanner(new File(url.toURI()),"UTF8").useDelimiter("\\Z").next();
}
}

JSE 7中的快速方法

public class FooTest {
@Test public void readXMLToString() throws Exception {
java.net.URL url = MyClass.class.getResource("test/resources/abc.xml");
java.nio.file.Path resPath = java.nio.file.Paths.get(url.toURI());
String xml = new String(java.nio.file.Files.readAllBytes(resPath), "UTF8");
}

自Java 9以来的快速方法

new String(getClass().getClassLoader().getResourceAsStream(resourceName).readAllBytes());

不过,这两种方法都不适合巨大的文件。

你可以试试:

String myResource = IOUtils.toString(this.getClass().getResourceAsStream("yourfile.xml")).replace("\n","");

一针见血:

ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("file/test.xml").getFile());

使用谷歌番石榴:

import com.google.common.base.Charsets;
import com.google.common.io.Resources;


public String readResource(final String fileName, Charset charset) throws Exception {
try {
return Resources.toString(Resources.getResource(fileName), charset);
} catch (IOException e) {
throw new IllegalArgumentException(e);
}
}

例子:

String fixture = this.readResource("filename.txt", Charsets.UTF_8)

这是我用来获得文本文件与文本。我使用了commons的IOUtils和guava的Resources。

public static String getString(String path) throws IOException {
try (InputStream stream = Resources.getResource(path).openStream()) {
return IOUtils.toString(stream);
}
}

你可以使用Junit Rule为你的测试创建一个临时文件夹:

@Rule public TemporaryFolder temporaryFolder = new TemporaryFolder();
File file = temporaryFolder.newFile(".src/test/resources/abc.xml");

OK,对于JAVA 8,经过大量调试 我发现

之间有区别
URL tenantPathURI = getClass().getResource("/test_directory/test_file.zip");

而且

URL tenantPathURI = getClass().getResource("test_directory/test_file.zip");

是的,路径开头的/没有它,我将得到null!

test_directorytest目录下。

使用共享。IO,这个方法工作在实例方法或静态方法:

public static String loadTestFile(String fileName) {
File file = FileUtils.getFile("src", "test", "resources", fileName);
try {
return FileUtils.readFileToString(file, StandardCharsets.UTF_8);
} catch (IOException e) {
log.error("Error loading test file: " + fileName, e);
return StringUtils.EMPTY;
}
}