本帖最后由 罗勇 于 2016-5-21 16:20 编辑
拷贝后,新的333文件里没有东西,但是居然比原来的文件还要大,而且里面多了几- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- public class Demo3_ArrayCopy {
- /**
- * @param args
- * @throws IOException
- */
- public static void main(String[] args) throws IOException {
- FileInputStream fis = new FileInputStream("222.doc");
- FileOutputStream fos = new FileOutputStream("333.doc");
- byte[] arr =new byte[1024*8];
- int lenth;
- while((lenth=fis.read()) != -1){
- fos.write(arr,0,lenth);
- }
- fis.close();
- fos.close();
- }
- }
复制代码
个空白页,大神过来看看,是哪里的问题。在线等解决。。。
|
组图打开中,请稍候......
|