有点不明白啊,你说的情况我怎么运行起来没有问题呢?给你看看,51txt之前没有的
import java.io.*;
public class cvcv {
public static void main(String[] args)throws IOException
{
FileInputStream in=new FileInputStream("d:/呵呵呵/12.txt");
byte[] z=new byte[1024];
int i=in.read(z);
FileOutputStream ou=new FileOutputStream("d:/呵呵呵/51.txt");
ou.write(z,0,i);
}
}
你的问题会不会是:如果不是用的Eclipse会不会是运行地址没有输入正确,或者就直接百度吧。 |