我必须在我的文件中写一组字符串...我知道它非常简单......但我已经卡住了...我在src文件夹中有一个文件通过ClassLoader获取这些文件... 它得到了我的文件......即使写不出任何错误......
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource(path).getFile());
if(file!=null){
Path nioPath = Paths.get(file.getPath());
List<String> aLines = new ArrayList<>();
aLines .add("Its appending");
aLines .add("The files using NIO");
try {
Files.write(nioPath, aLines, ENCODING,
StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE);
} catch (IOException e) {
e.printStackTrace();
return false;
}
当我打开时,我什么也没看到......