创建一个properties p,遍历map m,
Set<Entry<Integer, String>> st = tec.entrySet();
for (Entry<String, String> en : st) {
String t1 = en.getKey()+"";
String t2 = en.getValue();
p.setProperty(t1,t2);
}
properties的键值都是字符串。
然后再用字符流就可以写到文本文件了,虽然properties是写配置文件的,但是目前来说写成.txt格式的应该没有问题。 |