读文件
方法一:Files.readAllLines(Path path, Charset cs)
返回类型:List<String>
示例:
try {
List<String> contentList = Files.readAllLines('XXXXX',StandardCharsets.UTF_8)
StringBuilder sb = new StringBuilder();
for(int i = 0; i<contentList.size(); i++) {
sb.append(contentList.get(i));
}
}catch (IOException e) {
log.error(e);
return;
}
方法二:Files.readAllBytes(Path path) //默认是UTF-8编码
返回值:byte[] //可以将其转换成字符串
示例:
try {
String content = new String(Files.readAllBytes('XXXXX'));
}catch (IOException e) {
log.error(e);
return;
}
一行代码即可完成读文件
写文件
方法:Files.write(Path path,List<string> out, Charset cs) //输入的参数也可以是String类型
返回类型: Path
示例:
String content = "Hello World !!";
Files.write(Paths.get("c:/output.txt"), content.getBytes(),StandardCharsets.UTF_8);
网友评论