本帖最后由 杨增坤 于 2013-10-15 08:53 编辑
import java.io.*;
class My
{
public static void main(String[] args)
{
FileOutputStream fos = null;
FileInputStream fis = null;
try
{
fos = new FileOutputStream("bbb.jpg");
fis = new FileInputStream("aaa.jpg");
byte[] b = new byte[1024];
int len = 0;
while((len = fis.read(b)) != -1)
{
fos.write(b,0,len);
}
}
catch(IOException e)
{
throw new RuntimeException("shibai");
}
finally
{
try
{
if(fis != null)
fis.close();
}
catch(IOException e)
{
throw new RuntimeException("shibai");
}
try
{
if(fos != null)
fos.close();
}
catch(IOException e)
{
throw new RuntimeException("shibai");
}
}
}
为什么提示的错误是:进行语法解析时已到达文件结尾
这是什么意思啊?我哪里写错了吗? |