0
我正在個人項目上工作,但我有一個問題,我似乎無法弄清楚。掃描儀故障。沒有腳本錯誤,但控制檯給出錯誤
public void setvars() {
File file = new File("config.txt");
try {
Scanner sc = new Scanner(file);
while(sc.hasNextLine()) {
//int OESID = sc.nextInt(); this variable isnt used yet.
String refresh = sc.next();
sc.close();
textFieldtest.setText(refresh);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
在它告訴我的錯誤是while(sc.hasNextLine()) {
控制檯我不能弄明白。任何指針/建議將不勝感激!
有什麼錯誤?什麼是掃描儀對象? – 2013-02-16 15:55:48