当前位置: 首页 > 工具软件 > Streamtools > 使用案例 >

StreamTools 工具

扈韬
2023-12-01
package com.example.httpurlconnectionget.utils;


import java.io.ByteArrayOutputStream;
import java.io.InputStream;

public class StreamTools {



    public static String readFromNetWork(InputStream is) throws  Exception{

        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len = 0;
        while ((len = is.read(buffer)) != -1){

            baos.write(buffer,0,len);
        }

        is.close();
        baos.close();
        return baos.toString();

    }




}

 类似资料: