我无法理解为什么我的代码不能正常工作。只是为了测试它,我的 txt 文件中只有五个字符。我知道字符被放入我创建的数组中,但我不确定它为什么不打印它们。谢谢!
catch (IOException exception) {
System.err.println(exception);
}// catch
finally {
try {
if (fileInput != null)
fileInput.close();
}// try
catch (IOException exception) {
System.err.println("error!" + exception);
}// catch
}// finally
}// main
}// TestCode