일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- asp.net
- 이클립스
- Redirect
- varags
- javascript
- 웹뷰
- WebView
- Web Service
- html
- jsp
- MANTIS
- 컬럼명
- MS-SQL
- STS
- 자바
- Apache Lucene
- Eclipse
- SpringSource Tool Suite
- Android
- scrollView
- 안드로이드
- 자바스크립트
- Maven
- decompiler
- TextBox
- MSsql
- Java
- Bootstrap
- C#
- 웹 서비스
- Today
- Total
목록Java (59)
bboks.net™
자바에서는 기본적으로 창의 X 표시를 눌러도 창만 사라질뿐 프로세스 자체는 죽지 않는다. 프로세스를 닫기 위해서는 이벤트를 추가해줘야 하는데 Java AWT 의 경우 생성자에 다음을 추가해주면 된다. addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { dispose(); System.exit(0); } }); Java SWING의 경우 하나의 방법이 더 있는데 클래스가 JFrame을 상속 받았을 경우 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
import java.awt.Graphics2D; import java.awt.GraphicsConfiguration; import java.awt.GraphicsDevice; import java.awt.GraphicsEnvironment; import java.awt.Image; import java.awt.MediaTracker; import java.awt.image.BufferedImage; import java.awt.image.VolatileImage; import javax.swing.ImageIcon; public class BufferedImageConverter { public static BufferedImage toBufferedImage(Image input) { if(input..
e333. Creating a Custom Event A new custom event must extends EventObject. Moreover, an event listener interface must be declared to allow objects to receive the new custom event. All listeners must extend from EventListener. This example demonstrates all the steps necessary to create a new custom event. // Declare the event. It must extend EventObject. public class MyEvent extends EventObject {..