我的项目结构如下:
/src/main/java/
/src/main/resources/
/src/test/java/
/src/test/resources/
我在/src/test/resources/test.csv中有一个文件,我想从/src/test/java/MyTest.java中的单元测试中加载该文件
我有个不能用的代码。它会提示“没有这样的文件或目录”。
BufferedReader br = new BufferedReader (new FileReader(test.csv))
我也试过这个
InputStream is = (InputStream) MyTest.class.getResourcesAsStream(test.csv))
这也行不通。它返回null。我正在使用Maven构建我的项目。
试试下一个:
ClassLoader classloader = Thread.currentThread().getContextClassLoader();
InputStream is = classloader.getResourceAsStream("test.csv");
如果上面没有工作,各种项目已经添加了以下类:ClassLoaderUtil1(代码在这里).2
下面是一些如何使用该类的示例:
src\main\java\com\company\test\YourCallingClass.java
src\main\java\com\opensymphony\xwork2\util\ClassLoaderUtil.java
src\main\resources\test.csv
// java.net.URL
URL url = ClassLoaderUtil.getResource("test.csv", YourCallingClass.class);
Path path = Paths.get(url.toURI());
List<String> lines = Files.readAllLines(path, StandardCharsets.UTF_8);
// java.io.InputStream
InputStream inputStream = ClassLoaderUtil.getResourceAsStream("test.csv", YourCallingClass.class);
InputStreamReader streamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);
BufferedReader reader = new BufferedReader(streamReader);
for (String line; (line = reader.readLine()) != null;) {
// Process line
}
笔记
在《时光倒流机》中可以看到。
也在GitHub。
我让它工作,没有任何引用“类”或“ClassLoader”。
假设我们有三个文件位置的场景。你的工作目录(应用程序执行的地方)是home/mydocuments/program/projects/myapp:
a)工作目录的子文件夹后代:
myapp / res /文件/ example.file
b)不属于工作目录的子文件夹:
项目/文件/ example.file
b2)另一个子文件夹不是工作目录的后代:
程序/文件/ example.file
c)根文件夹:
家庭/期间/文件/例子。文件(Linux;在Windows中将home/替换为C:)
1)选择正确的道路:
a)字符串路径= "res/files/example.file";
b)字符串路径= "../projects/files/example.file"
b2)字符串路径= "../../program/files/example.file"
c)字符串路径= "/home/mydocuments/files/example.file"
基本上,如果它是根文件夹,则以斜杠开头。
如果是子文件夹,路径名前不能有斜杠。如果子文件夹不是工作目录的后代,你必须使用“../”cd到它。这告诉系统去一个文件夹。
2)通过传递正确的路径创建File对象:
File file = new File(path);
3)你现在可以开始了:
BufferedReader br = new BufferedReader(new FileReader(file));
现在我正在说明从maven创建的资源目录中读取字体的源代码,
可控硅/主/资源/ calibril.ttf
Font getCalibriLightFont(int fontSize){
Font font = null;
try{
URL fontURL = OneMethod.class.getResource("/calibril.ttf");
InputStream fontStream = fontURL.openStream();
font = new Font(Font.createFont(Font.TRUETYPE_FONT, fontStream).getFamily(), Font.PLAIN, fontSize);
fontStream.close();
}catch(IOException | FontFormatException ief){
font = new Font("Arial", Font.PLAIN, fontSize);
ief.printStackTrace();
}
return font;
}
它为我工作,希望整个源代码也将帮助你,享受!
非弹簧项目:
String filePath = Objects.requireNonNull(getClass().getClassLoader().getResource("any.json")).getPath();
Stream<String> lines = Files.lines(Paths.get(filePath));
Or
String filePath = Objects.requireNonNull(getClass().getClassLoader().getResource("any.json")).getPath();
InputStream in = new FileInputStream(filePath);
对于spring项目,你也可以使用一行代码来获取资源文件夹下的任何文件:
File file = ResourceUtils.getFile(ResourceUtils.CLASSPATH_URL_PREFIX + "any.json");
String content = new String(Files.readAllBytes(file.toPath()));