在Java中如何用reader写程序,如何使用BufferedReader/Writer在Java中复制图像

File file = new File("download.png");

File newfile = new File("D:\\Java.png");

BufferedReader br=null;

BufferedWriter bw=null;

try {

FileReader fr = new FileReader(file);

FileWriter fw = new FileWriter(newfile);

br = new BufferedReader(fr);

bw = new BufferedWriter(fw);

char[] buf = new char[1024];

int bytesRead;

while ((bytesRead = br.read(buf)) > 0) {

bw.write(buf, 0, bytesRead);

}

bw.flush();

}

catch (Exception e) {

e.printStackTrace();

} finally {

try {

br.close();

bw.close();

} catch (IOException e) {

e.printStackTrace();

}

}

Whats wrong with this code. Is it possible with BufferedReader and Writer Class??

I know how to to make copy of image using InputStream and OutputStream, So don't paste solution using that!!

解决方案

Whats wrong with this code.

You're using text-based classes for binary data.

Is it possible with BufferedReader and Writer Class?

Not while you're dealing with binary data, no.

I know how to to make copy of image using InputStream and OutputStream, So don't paste solution using that!

That's the solution you should use, because those are the classes designed for binary data.

Fundamentally, using Reader or Writer for non-text data is broken, and asking for trouble. If you open up the file in a text editor and don't see text, it's not a text file... (Alternatively, it could be a text file that you're using the wrong encoding for, but things like images and sound aren't naturally text.)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值