我想檢索當前系統小時,當Button1的用戶點擊了var「CT」將當前系統時間+ 1爪哇 - 隨時間(小時和分鐘)工作
然後,我想當var ct =當前系統小時時,程序將文本字段文本設置爲「完成」,但我似乎無法處理該時間。
我在主類:
Calendar now = Calendar.getInstance();
int hour = now.get(Calendar.HOUR_OF_DAY);
int minute = now.get(Calendar.MINUTE);
int second = now.get(Calendar.SECOND);
int ct=0;
When user click Button1
name = jTextField1.getText();
ct = minute + 1;
jLabel3.setText("Ends at "+ct);
現在,我怎麼永久運行的方法來檢查,如果克拉=當前小時?
你的問題到底是什麼?請寫下您遇到的錯誤。 –
您好,正如我在prelast語句中所說的:現在我該如何永久運行一個方法來檢查ct =當前小時? –
你的問題不清楚。你想要實現某種計時器嗎? – Radiodef