ObjectOutputStream objectOut=new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream("c:\\object.bin",true)));  
Employee employee1=new Employee();
objectOut.writeObject(employee);
objectOut.close();
把对象写入文件之后.用
ObjectInputStream objectIn=new ObjectInputStream(new BufferedInputStream(new FileInputStream("c:\\object.bin")));
   employee=(Employee)objectIn.readObject();只能读出第一个对象,怎样做才能把全部对象读出来。。
新手。。求高手指点