码迷,mamicode.com
首页 > 编程语言 > 详细

beanshell 通过java写数据到文件

时间:2019-06-23 17:41:29      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:通过   pat   ack   create   dir   puts   finally   exce   tput   

import java.io.*;

String filePath = "/data/account.txt"; 
String conent = vars.get("account"); 
BufferedWriter out = null;

try {
   		File file = new File(filePath);
        File fileParent = file.getParentFile();
        if (!fileParent.exists()) { 
         fileParent.mkdirs();
        }
        file.createNewFile();
	out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file, true)));
	out.write(conent + "\r\n");
} catch (Exception e) {
	e.printStackTrace();
} finally {
	try {
		out.close();
	} catch (IOException e) {
		e.printStackTrace();
	}
}

  

beanshell 通过java写数据到文件

标签:通过   pat   ack   create   dir   puts   finally   exce   tput   

原文地址:https://www.cnblogs.com/linbo3168/p/11073387.html

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