June 2001
Intermediate to advanced
888 pages
21h 1m
English
You need to draw text in a component.
Simply call the drawString ( )
method in the
Graphics class:
// graphics/DrawStringDemo.java
import java.awt.*;
public class DrawStringDemo extends Component {
int textX = 10, textY = 20;
public void paint(Graphics g) {
g.drawString("Hello Java", textX, textY);
}
public Dimension getPreferredSize( ) {
return new Dimension(100, 100);
}
}