これが私が読もうとしているものです:
FileInputStream fis=new FileInputStream("count.txt");
BufferedInputStream bis=new BufferedInputStream(fis);
DataInputStream dis=new DataInputStream(bis);
while(dis.read()!=-1)
{
orderCount=dis.readInt();
newOrderCount=dis.readInt();
}
Count.txt には 0 0 0 0 0 0 0 1 のようなデータがありますが、何らかの理由で EOF 例外が発生します。助けてください!