zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    python正文(两)
    mysql计算指定的时间TPS
    wamp无法登录phpmyadmin问题
    BZOJ 1150 CTSC2007 数据备份Backup 堆+馋
    学习计划
    improper Advertising identifier [IDFA] Usage. Your app contains the Advertising Identifier [IDFA] AP
    让你的字ScrollView、ListView充分伸展
    HDU1237 简单的计算器 【堆】+【逆波兰式】
    Android硬件加速
    搭建MyBatis框架
  • 原文地址:https://www.cnblogs.com/a00ium/p/10360186.html
Copyright © 2011-2022 走看看