Coding/Java 삽질기2005. 8. 22. 13:26
public static void main (String[] args) {
JFrame frame = new JFrame("FileViewer");
FileViewer applet = new FileViewer();
frame.getContentPane().add(applet, BorderLayout.CENTER);
applet.init();
applet.start();
frame.setSize(600, 480);
frame.setVisible(true);
}

'Coding > Java 삽질기' 카테고리의 다른 글

J2EE를 이용한 프로젝트 디플로이  (0) 2005.10.13
jar 파일 실행하기  (0) 2005.08.31
J2EE 환경 설정하기  (0) 2005.05.25
Posted by chobocho