목록Java (5)
soulfree
http://java.sun.com/products/java-media/jmf/2.1.1/download.html
올해 하반기에는 아마 Java로 RFID 어플리케이션을 작성하지 싶은데.... 출처 : http://www.pcbee.co.kr/contents/news/na/36253.html ============================================================================================== 한국썬마이크로시스템즈(대표 유원식, http://kr.sun.com/)는 RFID 소프트웨어의 최신버전인 썬 자바 시스템 RFID 소프트웨어 3.0(Sun Java System RFID Software 3.0 )을 새롭게 출시한다고 밝혔다. 아울러 썬 자바 시스템 RFID 소프트웨어의 주요 고객사인 삼성 SDS와 부산물류사업단은 새롭게 출시된 썬 자바 시스템 R..
// If an image is on the system clipboard, this method returns it; // otherwise it returns null. public static Image getClipboard() { Transferable t = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null); try { if (t != null && t.isDataFlavorSupported(DataFlavor.imageFlavor)) { Image text = (Image)t.getTransferData(DataFlavor.imageFlavor); return text; } } catch (UnsupportedFlavorE..
1.클래스를 설계할 때, 멤버변수 중 모든 인스턴스에 공통적으로 사용해야하는 것에 static을 붙인다. - 인스턴스를 생성하면, 각 인스턴스들은 서로 독립적기 때문에 서로 다른 값을 유지한다. 경우에 따라서는 각 인스턴스들이 공통적으로 같은 값이 유지되어야 하는 경우 static을 붙인다. 2. static이 붙은 멤버변수는 인스턴스를 생성하지 않아도 사용할 수 있다. - static이 붙은 멤버변수(클래스변수)는 클래스가 메모리에 올라갈때 이미 자동적으로 생성되기 때문이다. 3. static이 붙은 메서드(함수)에서는 인스턴스 변수를 사용할 수 없다. - static이 메서드는 인스턴스 생성 없이 호출가능한 반면, 인스턴스 변수는 인스턴스를 생성해야만 존재하기 때문에... static이 붙은 메서드(..
Writing Advanced Applications Appendix A: Security and Permissions[]All applets and any applications invoked with a security manager must be granted explicit permission to access local system resources apart from read access to the directory and its subdirectories where the program is invoked. The JavaTM platform provides permissions to allow various levels of access to different types of local ..