Technote/JAVA 9주차 8번문제 by Pooh0216 2009. 5. 9. P9_8 javax.swing.Timer를 이용하여 매 초마다 현재 시각을 인쇄하는 프로그램을 작성하시오. 강의자료에 있는 타이머 프로그램을 참고하시오. SecondsTimer package p9_8; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JOptionPane; import javax.swing.Timer; import java.util.*; public class SecondsTimer { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub class TimePrinter implements ActionListener{ public void actionPerformed(ActionEvent event) { Date now = new Date(); System.out.println(now); } } TimePrinter listener = new TimePrinter(); final int DELAY = 100; Timer t = new Timer(DELAY, listener); t.start(); JOptionPane.showMessageDialog(null,"Quit?"); System.exit(0); } } 공유하기 게시글 관리 International Scholar Pooh 저작자표시 'Technote > JAVA' 카테고리의 다른 글 10주차 1번 (0) 2009.05.13 9주차 9번문제 (0) 2009.05.09 9주차 7번문제 (0) 2009.05.09 9주차 6번문제 (0) 2009.05.09 9주차 5번문제 (0) 2009.05.09 관련글 10주차 1번 9주차 9번문제 9주차 7번문제 9주차 6번문제