码迷,mamicode.com
首页 > 其他好文 > 详细

把ArrayList集合中的字符串内容写到文本文件中

时间:2018-04-09 19:06:00      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:array   文本   exce   nfc   文件中   external   new   writer   close   

list列表数据导出到指定路径文本文档中
public  String getSDCardPath() {
String sdCard = Environment.getExternalStorageDirectory().getAbsolutePath();
sdCard = sdCard + File.separator;
return sdCard;
}

String mExportPath=getSDCardPath() + "TianChao/"+"Export/";
File file =new File(mExportPath);
if(!file.exists()){
file.mkdirs();
}
String filename="nfc.txt";
filename=filename.replaceAll("nfc",mTagNameNew);
File f=new File(mExportPath+filename);
try {
BufferedWriter bw=new BufferedWriter(new FileWriter(f));
for(String s: mNFCs){
bw.write(s);
bw.write("\r\n");
bw.flush();
}
bw.close();

} catch (Exception e) {

}

把ArrayList集合中的字符串内容写到文本文件中

标签:array   文本   exce   nfc   文件中   external   new   writer   close   

原文地址:https://www.cnblogs.com/spps/p/8761329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!