출처 : http://hamait.tistory.com/211
public static void main(String args[]) {
// 180722 추가..
Runnable runnable = new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
if (RunStart == false) {
System.out.println("정지중인 상태");
// 10분 뒤 다시 구매시도 - 손해보고 팔았을 때
if (Restart == 10){
// 시작하기
Restart = 0;
RunStart = true;
}else{
Restart++;
}
} else {
System.out.println("실행중인 상태");
btnClick.doClick();
}
}
};
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Main window = new Main();
window.frmCoin.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
// service.scheduleAtFixedRate(runnable, 0, 1, TimeUnit.SECONDS); // 1초마다 실행
service.scheduleAtFixedRate(runnable, 30, 60, TimeUnit.SECONDS); // 30초 뒤에 60초
}
/// 이건 main 부분 꼬다리
'JAVA' 카테고리의 다른 글
자바 이클립스 한글 주석 등 다른 사람들이 만든 파일 열었을 때 글자가 깨지는 현상일 때 해볼 만한 것 (0) | 2023.10.29 |
---|---|
(JAVA) java sort 정렬 (0) | 2018.07.22 |
(JAVA) awt 으로 프로그램 만들면서 디자인 보기 (0) | 2018.07.22 |
(JAVA) 프로그램 내에 일시 저장 hashmap (0) | 2017.10.03 |
(JAVA) json simple 사용방법 (0) | 2017.10.03 |