加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

byte数组和File,InputStream互转

(2012-03-28 15:38:46)
标签:

file转为byte

byte转为file

inputstream

it

分类: Java

1、将File、FileInputStream 转换为byte数组:

    File file = new File("file.txt");

    InputStream input = new FileInputStream(file);

    byte[] byt = new byte[input.available()];

    input.read(byt);

 

2、将byte数组转换为InputStream:

    byte[] byt = new byte[1024];

    InputStream input = new ByteArrayInputStream(byt);

 

3、将byte数组转换为File:

    File file = new File('');

    OutputStream output = new FileOutputStream(file);

    BufferedOutputStream bufferedOutput = new BufferedOutputStream(output);

    bufferedOutput.write(byt);

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有