public static void copyPic3() throws IOException {
FileInputStream fis = new FileInputStream("temp\\0.bmp");
FileOutputStream fos = new FileOutputStream("temp\\3.bmp");
FileReader fis = new FileReader("temp\\0.bmp");// 图片文件
FileWriter fos = new FileWriter("temp\\1.bmp");// 图片文件
//在这一步骤,,,,,为什么不能用字符流来复制图片,,,
int by = 0;
while((by=fis.read())!=-1)
fos.write(by)
}
fos.close();
fis.close();
}
请问以上步骤,,为什么不能用字符流》》》,,,
如果不可以,,为什么可以用字节流?????
多谢了,,,
|