我想在Swing应用程序上用Java绘制一个矩形,但我不知道如何。我看过类似的问题,没有一个包含我需要的答案。我尝试过以下方法:
private void paintComponent(Graphics graphics, Rectangle rect, Color color) {
contentPane.paintComponents(graphics);
Graphics2D graphics2D = (Graphics2D) graphics;
graphics2D.setColor(color);
graphics2D.draw(rect);
}
我称之为:
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(null);
paintComponent(contentPane.getGraphics(), new Rectangle(0, 0, 50, 50), Color.WHITE);
但它在这一行上引发NullPointerException
:
graphics2D.setColor(color);
我怀疑graphics2D
是null
。我该如何解决这个问题?
答案 0 :(得分:3)
你甚至没有正确地覆盖方法。 paintComponent
仅将Graphics
个对象作为参数,因此您无法添加自己的对象。
import javax.swing.*;
import java.awt.*;
public class Test extends JPanel {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame();
frame.add(new Test());
frame.setVisible(true);
frame.pack();
}
});
}
public Dimension getPreferrdSize() {
return new Dimension(200, 200);
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawRect(10, 10, 150, 40);
}
}