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
- 컬럼명
- MS-SQL
- varags
- Android
- MANTIS
- 안드로이드
- C#
- SpringSource Tool Suite
- Web Service
- STS
- MSsql
- Redirect
- Bootstrap
- Java
- Eclipse
- asp.net
- html
- javascript
- TextBox
- 웹뷰
- jsp
- decompiler
- Maven
- WebView
- Apache Lucene
- 이클립스
- 자바
- 자바스크립트
Archives
- Today
- Total
bboks.net™
[자바 애플릿] 외부 이미지 가져오기 본문
import java.awt.*;
import java.applet.*;
import java.net.*;
public class TestOnLine extends Applet {
Image imgA;
public void init() {
try {
imgA = getImage(new URL("http://wstatic.naver.com/t/2007/0605/20070605151845.gif"));
} catch (MalformedURLException me) {
}
}
public void paint(Graphics g) {
g.drawImage(imgA, 0, 0, this);
}
}
결과화면