See also e551 精简的Applet.
Image image;
public void init() {
// Load image
image = getImage(getDocumentBase(), "http://hostname/image.gif");
}
public void paint(Graphics g) {
// Draw image
g.drawImage(image, 0, 0, this);
}
| Related Examples |
原文:https://www.cnblogs.com/borter/p/9575325.html