楼主图片,doc等都是二进制存储的,运用字节流是可以复制成功的
相同代码
import java.io.*;
public class Pic
{
public static void main(String args[]) throws Exception
{
int temp = 0;
FileInputStream fin = new FileInputStream("d:/file/1.doc");
FileOutputStream fot = new FileOutputStream("d:/2222.doc");
while((temp = fin.read())!=-1)
{
fot.write(temp);
}
fin.close();
fot.close();
}
}
我试了图片,和doc都能正常显示的,再试试 |