我的程序读取用户选择的文件。编辑:该文件在一行中包含 4 个字符的字符串、4 位整数和 char(按此顺序),行数未公开。
如果其中一个格式错误或丢失,程序需要提供错误消息并关闭。
我将如何检查错误?
谢谢。
我的程序读取用户选择的文件。编辑:该文件在一行中包含 4 个字符的字符串、4 位整数和 char(按此顺序),行数未公开。
如果其中一个格式错误或丢失,程序需要提供错误消息并关闭。
我将如何检查错误?
谢谢。
You can try parsing the content of the file within a try/catch bracket and if an exception is caught you display an error message and exit by with System.exit(0)
;
try {
//parsing
}
catch (Exception e) {
System.out.prinln("Error message");
System.exit(0);
}