从网上获得了数据
像 姓名 年龄("jones",20),姓名 年龄("marys",21)......
把它转化为这种形式如:
姓名 年龄
marys 21
jones 20
......
其中可提供部分代码如:
void createTxt(String content,String fileName){
FileWriter fw = null;
BufferedWriter bw = null;
try {
System.out.println("sssssss");
fw = new FileWriter("D:/"+fileName+".excel");
//构建一个带缓存的输出流
bw = new BufferedWriter(fw);
bw.write(content);
//把缓存中的内容全部推到文件中
bw.flush();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally{
try {
bw.close();
fw.close();
} catch (Exception e2) {
bw = null;
fw = null;
}
}
}
怎么解决啊,可从上面代码中规定一种格式,求解
------解决方案--------------------
在线联系,加我好友