Beanshell post processor写文件

byte[] responseData = prev.getResponseData().;

private String filePath = "F:/test.txt";

BufferedOutputStream bos = null;

FileOutputStream fos = null;

File file = null;try

{

File file = new File(filePath);

fos = new FileOutputStream(file, true);// 不添加参数true,以非追加的方式添加内容

bos = new BufferedOutputStream(fos);

bos.write(responseData);

}catch(

Exception e)

{

e.printStackTrace();

}finally

{

if (bos != null) {

try {

bos.close();

} catch (IOException e1) {

e1.printStackTrace();

}

}

if (fos != null) {

try {

fos.close();

} catch (IOException e1) {

e1.printStackTrace();

}

}

}

 

    byte[] responseData = prev.getResponseData().;
    private String filePath = "F:/test.txt";
    BufferedOutputStream bos = null;
    FileOutputStream fos = null;
    File file = null;try
    {
        File file = new File(filePath);
        fos = new FileOutputStream(file, true);// 不添加参数true,以非追加的方式添加内容
        bos = new BufferedOutputStream(fos);
        bos.write(responseData);
    }catch(
    Exception e)
    {
        e.printStackTrace();
    }finally
    {
        if (bos != null) {
            try {
                bos.close();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
        }
        if (fos != null) {
            try {
                fos.close();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
        }
    }
View Code

猜你喜欢

转载自www.cnblogs.com/a00ium/p/10360186.html
今日推荐