向文件中写入Hashmap对象,且可以追加写的方法~~试了很多类了,最后得到的方法
PrintWriter ps = new PrintWriter(new FileOutputStream("1.txt",true));
ps.print(map);
ps.close();
欢迎关注我的微博:@机器学习日记
https://weibo.com/6382778167/profile?rightmod=1&wvr=6&mod=personinfo
PrintWriter ps = new PrintWriter(new FileOutputStream("1.txt",true));
ps.print(map);
ps.close();