/*
拷贝图片练习。
*/
import java.io.*;
class CopyTest
{
public static void main(String[] args) throws IOException //主函数
{
FileOutputStream fos = new FileOutputStream("d:\\fanbo.jpeg"); //目的图片
FileInputStream fis = new FileInputStream("d:\\fb.jpeg"); //源图片
byte[] buf = new byte[1024]; //数组
int len = 0;
while ((len = fis.read(buf))!= -1)
{
fos.write(buf,0,len);
}
fos.close(); //关流
fis.close(); //关流
}
}
//为什么我编译通过,然后执行时,报错:d:\\fb.jpeg(系统找不到指定的文件),我确定我有张fb.jpeg的图片的。 怎么回事呀???
|