关于文件的输入输出
对于文件的复制总不是用的很好,请问:怎么将图像文件进行复制,用字节流应该怎么写,我用writeByte复制的文件不对吧?
恩,用FileOutputStream是可以,但是如果我用DataOutputStream为什么会复制出一个无法打开的文件呢?是否还要将Data流再进行转换?
比如这样:
public static void main(String[] args) throws IOException{
// TODO 自动生成方法存根
FileInputStream file=new FileInputStream("C:\\image.bmp");
DataInputStream input=new DataInputStream(file);
DataOutputStream output=new DataOutputStream(new FileOutputStream("C:\\image_copy.bmp"));
byte code;
while((code=input.readByte())!=-1)
output.write(code);
input.close();
output.close();
}
如果将code变量定义为Int型,则会有eof异常,如果定义为byte则不会,但是个有损文件,无法可视文件,该怎么正确地使用DataInputStream/DataOutputStream
[[it] 本帖最后由 macrossyun 于 2008-10-29 09:03 编辑 [/it]]