在 Java 中画一个矩形
Draw a Rectangle in Java
我想在 Swing 应用程序中 Java 中绘制一个矩形,但我不知道如何绘制。我看过类似的问题,none 包含我需要的答案。我尝试了以下方法:
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
。我该如何解决这个问题?
您甚至没有正确覆盖该方法。 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);
}
}
我想在 Swing 应用程序中 Java 中绘制一个矩形,但我不知道如何绘制。我看过类似的问题,none 包含我需要的答案。我尝试了以下方法:
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
。我该如何解决这个问题?
您甚至没有正确覆盖该方法。 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);
}
}