我编写了这个程序来将一个 pdf 文件复制到另一个文件,但是我在 .txt 文件的 o/p 中得到了 currupt 字段,这段代码工作正常。
代码:
public class FileCopy {
public static void main(String args[]) {
try {
FileInputStream fs = new FileInputStream("C:\\dev1.pdf");
byte b;
FileOutputStream os = new FileOutputStream("C:\\dev2.pdf");
while ((b = (byte) fs.read()) != -1) {
os.write(b);
}
os.close();
fs.close();
} catch (Exception E) {
E.printStackTrace();
}
}
}