84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
通过以下方式可以写文件
List<String> list = new ArrayList<String>(); list.add("第一行"); list.add("第二行"); list.add("第三行"); Path path = Paths.get("E:" + File.separator + "demo.txt"); Files.write(path, list, Charset.forName("UTF-8"));
但如果想每次执行都追加内容该怎么办呢?
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
首先你上面的代码这样写更好(看):
Path path = Paths.get("E:", "demo.txt"); Files.write(path, list, StandardCharsets.UTF_8);
至于追加,使用 StandardOpenOption 的 APPEND 选项就行:
Files.write(path, list, StandardCharsets.UTF_8, StandardOpenOption.APPEND);
首先你上面的代码这样写更好(看):
至于追加,使用 StandardOpenOption 的 APPEND 选项就行: