猿问

PrinterWriter创建一个文件,但不写入该文件。尝试冲洗并在各处关闭。仍然,不写入文件

试图冲洗并关闭所有地方。仍然不会写入文件。更改后的文件位置,文件路径仍未写入文件;但是它创建了它。


HUX布斯
浏览 88回答 1
1回答

鸿蒙传说

您的代码按原样工作。当您使用try-with-resources时,也可以删除关闭。import java.io.File;import java.io.FileWriter;import java.io.IOException;import java.io.PrintWriter;import java.util.HashMap;import java.util.Map;public class Main {&nbsp; &nbsp; public static void main(String[] args) {&nbsp; &nbsp; &nbsp; &nbsp; Map<String, String> map = new HashMap<>();&nbsp; &nbsp; &nbsp; &nbsp; map.put("a", "my name");&nbsp; &nbsp; &nbsp; &nbsp; map.put("b", "your name");&nbsp; &nbsp; &nbsp; &nbsp; filePatient(map, "c:\\temp\\test");&nbsp; &nbsp; }
随时随地看视频慕课网APP

相关分类

Java
我要回答