首页 > 其他 > 详细

ByteArrayInputStream和ByteArrayOutputStream

时间:2016-10-23 22:59:32      阅读:186      评论:0      收藏:0      [点我收藏+]
public class ByteArrayTest {

    public static void main(String[] args) throws IOException {
        read(write());
    }
    
    //read
    public static void read(byte[] b) throws IOException{
        InputStream is = new BufferedInputStream(new ByteArrayInputStream(b));
        byte fush[] = new byte[1024];
        int len = 0;
        while((len=is.read(fush))!=-1){
            System.out.println(new String(fush, 0,len));
        }
        is.close();
    }
    
    //write
    public static byte[] write() throws IOException{
        
        String s = "what the fuck write";
        byte[] b = s.getBytes();
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        
        int len=b.length;
        out.write(b, 0, len);
        
        byte[] bytes = out.toByteArray();
        out.close();
        return bytes;
    }

}

 

ByteArrayInputStream和ByteArrayOutputStream

原文:http://www.cnblogs.com/Iqiaoxun/p/5991113.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!