公平地说,我没有得到这些例外,而只是试图找到一个解决这些例外的方法。例外是 NosuchElementException 和 NumberFormatException。
注意:这个程序运行良好,因为 txt 文件很好。但是,引入任何不是数字的东西都会失败。
这是可能发生问题的主要类:
BankReader.java
package bankreader;
import java.io.File;
import java.io.IOException;
import java.util.Scanner;
public class BankReader
{
public static void main(String[] args)
{
BankReader reader = new BankReader();
Scanner scan = new Scanner(System.in);
String fileName = "";
boolean finished = false;
while(!finished)
{
try
{
System.out.print("Enter the name of the file: ");
fileName = scan.nextLine();
scan = reader.checkFile(fileName, scan);
reader.readFile(scan);
finished = true;
}
catch(IOException ex)
{
System.out.print("\nThis file does not exist or had");
System.out.println(" characters that were not numbers. Please enter a different file.\n");
}
}
scan.close();
}
public Scanner checkFile(String fileName, Scanner scan) throws IOException
{
File file = new File(fileName);
scan = new Scanner(file);
return scan;
}
public void readFile(Scanner scan)
{
String accountNumber = "";
double accountBalance = -1;
Bank bank = new Bank();
while(scan.hasNext())
{
accountNumber = scan.next();
accountBalance = Double.parseDouble(scan.next());
BankAccount bankAccount = new BankAccount(accountNumber, accountBalance);
bank.addAccount(bankAccount);
}
if (bank.numberOfAccounts() > 0)
{
BankAccount maxBalance = bank.getHighestBalance();
System.out.println(maxBalance.getAccountNumber() + ": " + "$" + maxBalance.getBalance());
}
else
System.out.println("\nThe file had no accounts to compare.");
}
}
这是我正在使用的 txt 文件:
346583155444415 10000.50
379611594300656 5000.37
378237817391487 7500.15
378188243444731 2500.89
374722872163487 25000.10
374479622218034 15000.59
342947150643707 100000.77
因此,即使这是我自己的 txt 文件,如果我访问的文本文件中的字符不是数字或有帐号但没有余额,反之亦然。我想知道如何处理这些异常。
我试过的:
我试图做 scan.nextLine() 以摆脱异常,但它只是引入了另一个异常。
我还尝试使用一种使用正则表达式来检查字符串是否为数字的方法。问题是我使用的变量不是字符串,我宁愿不创建更多检查。
在我看来,我不再做什么,发生异常后我无法恢复我的扫描仪。