我有一个地图的arraylist,我需要将每个地图的键写入由管道(|)分隔的文件中。下一行中下一张地图的键,依此类推。我不熟悉文件操作。请帮帮我
编辑 - 抱歉不包括我所做的事情,我做了以下事情并且不是逐行写的,很多空行都介于其中
if(alPrdt.size()>0)
{
if (!file.exists()) {
System.out.println("no file. creating new file");
file.createNewFile();
}
fw = new FileWriter(file.getAbsoluteFile(),true);
bw = new BufferedWriter(fw);
//s.writeObject(alPrdt);
for(int i=0;i<alPrdt.size();i++)
{
String temp = null;
Map map=(Map) alPrdt.get(i);
Iterator it=map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pairs = (Map.Entry)it.next();
System.out.println("pairs:"+pairs.toString());
if(pairs.getValue()==null)
temp = "";
else
temp = pairs.getValue().toString();
bw.write(temp);
bw.write("|");
it.remove();// avoids a ConcurrentModificationException
}
bw.write("\n");
}
bw.close();
}
答案 0 :(得分:1)
如果你只想要这个文件中的密钥,那么可能:
String pathToFile = "C:\\temp\\file.txt";
try (BufferedWriter bw = new BufferedWriter(new FileWriter(pathToFile))) {
for (Map<String, String> map : mapList) {
Iterator<String> it = map.keySet().iterator();
while (it.hasNext()) {
bw.write(it.next());
if (it.hasNext()) {
bw.write("|");
}
it.remove();
}
bw.write(System.lineSeparator());
}
} catch (IOException e) {
e.printStackTrace();
}
答案 1 :(得分:1)
Java 7有java.nio.file.Files
将列表转换为文件,其中列表项表示行:
Files.write(Paths.get("C:\\temp\\file.txt"), lines, StandardCharsets.UTF_8);
其中lines
为List<String>
所以,(我确定)您可以通过提取密钥轻松地将List<Map>
转换为List<String>
。
希望它能帮到你