1、看来是初学者。
2、filereader和filewriter等流,都是最基本的I/O流,只能正确读写纯文本或纯二进制之类的字节流,像docx,jpg都是不同的,需要专门读写jar包来操作。
3、在网上搜索下"java 操作doc office”之类的就可以找到答案了。
如果只是单纯的复制的话,,就用FileinputStream 和FileoutputStream来读写吧,基本上都能复制。
InputStream in = new FileInputStream(file);
BufferedImage img = ImageIO.read(in);//从流中读取照片对象
in.close();
OutputStream out = new FileOutputStream("img.png");
ImageIO.write(img, "png", out);//写出照片对象到流
out.close();
//你用filereader和filewriter时候只要在外面套几层就行了,他们只是工具类,本质是一样的
filereader和filewriter是用来读取无格式文本的,要读取其他格式的文本就得使用其他的类库
你可下一个API,里面有什么都有
不能