当前位置: 代码迷 >> Eclipse >> 怎样把结果这样了?解决办法
  详细解决方案

怎样把结果这样了?解决办法

热度:17   发布时间:2016-04-23 13:55:53.0
怎样把结果这样了?
从网上获得了数据  
   
  像 姓名 年龄("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;
}
}
}
   
  怎么解决啊,可从上面代码中规定一种格式,求解

------解决方案--------------------
在线联系,加我好友
  相关解决方案