📅  最后修改于: 2023-12-03 14:42:12.850000             🧑  作者: Mango
Java Applet-Painting是一个可以在网页上绘画的小工具。它基于Java Applet技术,可以通过在网页上嵌入Applet代码进行使用。
import java.applet.Applet;
import java.awt.*;
public class PaintApplet extends Applet {
private Image image;
private Graphics graphic;
public void init() {
image = createImage(getSize().width, getSize().height);
graphic = image.getGraphics();
graphic.setColor(Color.BLACK);
}
public void paint(Graphics g) {
g.drawImage(image, 0, 0, this);
}
public boolean mouseDown(Event event, int x, int y) {
graphic.drawLine(x, y, x, y);
repaint();
return true;
}
}
上面的代码是一个简单的绘画Applet,它可以在鼠标按下时,在界面上绘制一条直线。
在HTML文件中,使用以下代码嵌入Applet:
<applet code="PaintApplet.class" width="300" height="300"></applet>
其中,code属性指定了Applet代码的类名,width和height属性指定了Applet的宽度和高度。