Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- scrollView
- Apache Lucene
- Maven
- Redirect
- jsp
- 이클립스
- MSsql
- 자바
- MS-SQL
- Java
- 웹 서비스
- 컬럼명
- WebView
- Android
- C#
- decompiler
- MANTIS
- Eclipse
- html
- TextBox
- Bootstrap
- javascript
- varags
- STS
- asp.net
- 웹뷰
- SpringSource Tool Suite
- 안드로이드
- Web Service
- 자바스크립트
Archives
- Today
- Total
목록2007/06/19 (1)
bboks.net™
[자바 애플릿] 더블버퍼링 예제
import java.applet.Applet; import java.awt.Color; import java.awt.Graphics; import java.awt.Image; public class TestDoubleBuffer extends Applet implements Runnable { int x, y; boolean posX, posY; Image offImg; Graphics gc; Thread thr; public void init() { this.x = 0; this.y = 0; this.posX = true; this.posY = true; } public void start() { offImg = this.createImage(this.getWidth(), this.getHeight(..
Java/Java
2007. 6. 19. 12:11