我正在尝试在 for 中更新我的 Java Swing 表单。我尝试了很多方法,但没有奏效。这是我最后一次尝试的:
for(int i=0; i<10; i++) {
jTextField1.setText("" + i);
try {
Thread.sleep(500);
}
catch (InterruptedException ex) {
Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);
}
}