Applet主要用于游戏和动画。为此, 需要移动图像。 |
import java.awt.*;
import java.applet.*;
public class AnimationExample extends Applet {Image picture;
public void init() {
picture =getImage(getDocumentBase(), "bike_1.gif");
}public void paint(Graphics g) {
for(int i=0;
i<
500;
i++){
g.drawImage(picture, i, 30, this);
try{Thread.sleep(100);
}catch(Exception e){}
}
}
}
在上面的示例中, Graphics类的drawImage()方法用于显示图像。 drawImage()方法的第四个参数是ImageObserver对象。 Component类实现ImageObserver接口。因此, 当前类对象也将被视为ImageObserver, 因为Applet类间接扩展了Component类。 |
<
html>
<
body>
<
applet code="DisplayImage.class" width="300" height="300">
<
/applet>
<
/body>
<
/html>
推荐阅读
- Android开发系列(十七)(读取assets文件夹下的数据库文件)
- Applet中的模拟时钟
- 压力测试和后期开发工具
- 嗅探和欺骗工具
- 什么是Usbehci.sys以及如何修复错误(分步指南)
- 什么是Fuslogvw.exe以及如何检查日志(分步指南)
- 什么是Fsquirt.exe(用途以及如何禁用或启用它?)
- 什么是Dumpchk.exe文件以及如何使用它()
- Bootsect.exe提示和指南(它是什么、用途、命令行)