1,同学不能的,你想啊,图片里面是字节流,你确用了一个字符流是接收,即使接收,有些能转换成功,但是还是会出现有转不了的,你运行过后对比两个文件大小,应该知道Copy后的图片会小好多。
2,但是你可以用字节流去copy文本文件
3,代码
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("ss.jpg"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("ss_copy.jpg"));
byte[] by = new byte[1024];
int len = 0;
while ((len = bis.read(by)) !=-1) {
bos.write(by,0,len);
bos.flush();
}
bis.close();
bos.close();作者: 王飞 时间: 2012-12-26 11:12