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

file与 byte[] 互转

时间:2014-09-28 21:05:35      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:os   ar   sp   c   ad   r   new   bs   file   

byte 转file

String filepath="D:\\"+getName();
          File file=new File(filepath);
          if(file.exists()){
              file.delete();
          }
          FileOutputStream fos = new FileOutputStream(file);   
          fos.write(data,0,data,.length);   
          fos.flush();   
          fos.close(); 

 

file转 byte

FileInputStream inputStream = new FileInputStream(file);
        ByteArrayOutputStream bytestream = new ByteArrayOutputStream();  
        int ch;  
        while ((ch = inputStream.read()) != -1) {  
         bytestream.write(ch);  
        }  
        byte[] data= bytestream.toByteArray();  
        bytestream.close();  
        inputStream.close();    
        return data;

file与 byte[] 互转

标签:os   ar   sp   c   ad   r   new   bs   file   

原文地址:http://www.cnblogs.com/tiandjnet/p/3998610.html

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