本帖最后由 凝聚 于 2013-10-24 15:51 编辑
package Nineteen;
import java.io.*;
public class twelve {
public static void main(String[] args)throws IOException
{
FileOutputStream fos=null;
FileInputStream fis=null;
try
{
fos=new FileOutputStream("D:\\图片\\自己喜欢的\\3b7f47074d6e084c25ec1e883952339f.jpg");
//fis=new FileInputStream("me.bmp");
fis=new FileInputStream("me.jpg");
byte[]buf=new byte[1024];
int len=0;
while((len=fis.read(buf))!=-1)
{
fos.write(buf,0,len);
}
}
catch(IOException e)
{
throw new RuntimeException("复制文件失败");
}
finally
{
try
{
if(fis!=null)
fis.close();
}
catch(IOException e)
{
throw new RuntimeException("读取文件失败");
}
try
{
if(fos!=null)
fos.close();
}
catch(IOException e)
{
throw new RuntimeException("写入文件失败");
}
}
}
}
这段代码显示“文件复制错误”是怎么回事啊。
|