摘要:
String infile = "e:\\copy_i.txt"; String outfile = "e:\\copy_o.txt"; FileInputStream fin = new FileInputStream(infile); FileOutputStream fout = new FileOutputStream(outfile); FileChannel fcin = fin.getChannel(); FileChannel fcout = fout.getChannel(); ByteBuffer buffer = ByteBuffe 阅读全文