如果文件有一个空行作为文件的最后一行,它会在 while 语句之后爆炸。有人可以帮忙吗?
while(in.hasNext())
{
tempPropID = in.nextInt();
tempPropType = in.next().toUpperCase();
tempPropCost = in.nextDouble();
tempAgentID = in.nextByte(WIDTH);
}
如果文件有一个空行作为文件的最后一行,它会在 while 语句之后爆炸。有人可以帮忙吗?
while(in.hasNext())
{
tempPropID = in.nextInt();
tempPropType = in.next().toUpperCase();
tempPropCost = in.nextDouble();
tempAgentID = in.nextByte(WIDTH);
}