beanshell 通过java写数据到文件
Posted linbo3168
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了beanshell 通过java写数据到文件相关的知识,希望对你有一定的参考价值。
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写数据到文件的主要内容,如果未能解决你的问题,请参考以下文章