【发布时间】:2011-12-18 21:13:48
【问题描述】:
我收到此错误:
bill value:$ 0.10
bill value: $0.05
bill value: $0.01
bill value: $100.00
Exception in thread "main" java.io.EOFException
at java.io.ObjectInputStream$BlockDataInputStream.peekByte(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at ReadMoney.main(ReadMoney.java:12)
================== 我的代码:
//import java.util.Date;
public class ReadMoney
{
public static void main(String argv[]) throws Exception
{
FileInputStream fis = new FileInputStream("money.out");
ObjectInputStream ois = new ObjectInputStream(fis);
Object read;
try
{
while ((read = ois.readObject()) != null)
{
if (read instanceof Bill)
{
System.out.println("bill value: " + read);
}
else if (read instanceof Quarter)
{
}// while
else if (read instanceof Dime)
{
System.out.println("bill value:" + read);
}
else if (read instanceof Nickel)
{
System.out.println("bill value:" + read);
}
else if (read instanceof Penny)
{
System.out.println("bill value:" + read);
}
else if (read instanceof Bill)
{
System.out.println("bill value:" + read );
}
Money quarter = (Money) ois.readObject();
System.out.println("Quarter: "+ quarter);
System.out.println("Quarter: "+ quarter);
Money dime = (Money) ois.readObject();
System.out.println("Dime:" + dime);
Money nickel = (Money)ois.readObject();
System.out.println("Nickel:" + nickel);
Money penny = (Money) ois.readObject();
System.out.println("Penny:" + penny);
Money bill = (Money) ois.readObject();
System.out.println("Bill: " + bill);
}// try
} catch (IllegalBillException ibe)
{
System.out.println("End of file reached");
}
ois.close();
fis.close();
}// main
}// class
我很确定我的 try and catch 块是正确的,但是由于某些奇怪的原因,我的程序没有打印 2 个季度的值以及“到达文件结尾”的文本。 =/
【问题讨论】:
-
你的文件内容是什么?似乎它不包含您认为的内容。
标签: java exception io try-catch