这是我的问题:我需要将Interator写入文件“random.txt”我能够看到所有数据。数据是存储在哪里,我可以使用System.out.print看到它但我的文件是空白的。我能够创建文件,但不能写入它。
我正在阅读我的comp文件。存储在Treemap中并尝试写入文本文件。 (我可以在没有问题的情况下使用数组)但是这个带有迭代器的地图正在反弹。
如果有人可以帮我一窝,我会很感激。
我需要使用TreeMap和Iterator。
public static void main(String[] args) throws FileNotFoundException, IOException {
Map<String, String> Store = new TreeMap<>();
Scanner text=new Scanner(System.in);
System.out.println("enter file: ");
//C:\Users\Alex\Desktop\Fruits\fruits.txt
String rap=text.next();
File into = new File(rap);
try (Scanner in = new Scanner(into)) {
while (in.hasNext()){
String name=in.next();
String fruta = in.next();
Integer num= Integer.parseInt(in.next());
System.out.println(fruta+"\t"+name+"\t"+num);
if (Store.containsKey(fruta)){
Store.put(name,Store.get(name)+fruta );
}
else{
Store.put(name,fruta);
}
}
in.close();
}
System.out.println();
// insert data to store MAP
Set top=Store.entrySet();
Iterator it = top.iterator();
// debugging
System.out.println(top);
// Creating file???????
FileWriter fstream = new FileWriter("random.txt");
//identify File to be write??????
BufferedWriter out = new BufferedWriter(fstream);
//iterator Loop
while(it.hasNext()) {
Map.Entry m = (Map.Entry)it.next();
String key = (String)m.getKey();
String value = (String)m.getValue();
//writing to file?????
out.write("\t "+key+"\t "+value);
// debugging
System.out.println(key +"\t"+ value);
}
System.out.println("File created successfully.");
}
答案 0 :(得分:1)
在while
循环(写入文件的循环)完成后,执行:
out.flush();
out.close();
简短说明: BufferedWriter
在内存中缓冲你写的内容。调用write
方法时,它不会立即写入文件。一旦while循环完成并且要写入文件的数据在缓冲存储器中准备好,您应该调用flush
来执行实际写入硬盘。最后,您应始终close
不再使用的BufferedWriter,以避免内存泄漏。