在 Applet 中显示文字 . 图形等信息时,应使用的方法是
时间: 2024-06-12 12:06:49 浏览: 141
使用 Graphics 类的相关方法来绘制文字和图形,例如:
- drawString():绘制字符串
- drawLine():绘制线段
- drawRect():绘制矩形
- fillRect():填充矩形
- drawOval():绘制椭圆
- fillOval():填充椭圆
- drawPolygon():绘制多边形
- fillPolygon():填充多边形
在 Applet 中,可以通过覆盖 paint() 方法来进行绘制。在 paint() 方法中,可以通过调用 getGraphics() 方法获取 Graphics 对象,然后使用 Graphics 对象来进行绘制操作。例如:
```
public void paint(Graphics g) {
g.drawString("Hello, world!", 50, 50);
g.drawLine(50, 60, 100, 60);
g.drawRect(50, 70, 50, 30);
g.fillRect(110, 70, 50, 30);
g.drawOval(50, 110, 50, 30);
g.fillOval(110, 110, 50, 30);
int[] xPoints = {50, 70, 90};
int[] yPoints = {150, 170, 150};
g.drawPolygon(xPoints, yPoints, 3);
int[] xPoints2 = {110, 130, 150};
int[] yPoints2 = {150, 170, 150};
g.fillPolygon(xPoints2, yPoints2, 3);
}
```
阅读全文