출처 : http://www.java-forums.org/java-tips/6578-messagebox-example.html public class MessageBox { /* These are a list of STATIC MODAL dialogs int return codes of button pressed: -1 - WINDOW CLOSED - the X PRESSED 0 - YES and OK 1 - NO 2 - CANCEL (thanks to flipside for the idea) */ public static int yesno(String theMessage){ int result = JOptionPane.showConfirmDialog((Component) null, theMessage,..
1. Value Object 1) Model, View 간의 데이터 전달용도 2) 멤버변수와 getter, setter 메소드로 구성 3) 기존 JSP의 Bean과 동일 4) 파라미터가 길어질 경우 VO를 이용하는 것이 효율적 5) Entity VO와 Custom VO 두 종류 - Entity VO : Entity(EJB 또는 DB) 정보와 동일 - Custom VO : 사용자 필요에 의해 만든 VO 6)자동화 도구를 사용하여 만드는 것이 편리함 - eclipse에서 팝업 메뉴의 Source > Generate Getters and Setters 를 통해 쉽게 생성 가능 7) ValueObject 는 j2EE 패턴 중의 하나로 화면의 입력값을 정리하여 보관 및 유지해 두는 클래스 입니다. J2EE 패턴에..
Fat Jar 설치 http://fjep.sourceforge.net/
import java.awt.MouseInfo; import java.awt.PointerInfo; public class MouseTest { public MouseTest() { for (int i = 0; i < 10; i++) { PointerInfo pointerInfo = MouseInfo.getPointerInfo(); System.out.println("Mouse Position : " + pointerInfo.getLocation()); try { Thread.sleep(1000L); } catch (InterruptedException ex) { break; } } } public static void main(String[] args) { new MouseTest(); } }
1) 프로젝트의 Properties 2) Add External JARs
1. [Help] - [Software Updates] - [Find and Instrall] 에서 Search for new features to install 선택 2. Install 창에서 New Remote Site 선택 후 URL에 "http://subclipse.tigris.org/update" 입력 - OK - Finish 클릭 3. Subclipse 선택후 Next 클릭 - "I accept the terms" 선택 후 Next 클릭 - Finish 클릭 - Install All 클릭 - 설치 - Restart