码迷,mamicode.com
首页 > 其他好文 > 详细

ByteArrayInputStream和ByteArrayOutputStream

时间:2016-10-23 23:02:13      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:exception   array   return   throws   out   stream   turn   bytes   rgs   

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

标签:exception   array   return   throws   out   stream   turn   bytes   rgs   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!