私は個人的なプロジェクトに取り組んでいますが、理解できない問題があります。
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()) {
。任意のポインタ/アドバイスをいただければ幸いです!