充满鳗鱼的气垫船是对的,就像他/她通常那样。看起来你真的没有尝试过。
看看教程,但我相信当 Hovercraft Full Of Eels 说正确的方式时,hover 的含义如下。
让我解释一下我在下面做了什么。首先,我创建了一个扩展 JFrame 的新类。JFrame 是假设将所有组件保存在一个窗口中的东西。然后在 JPanel 上绘图,以便您的所有绘图都包含在一个轻量级容器中。由于 StackOverflow,我使用刚刚发现的新布局设置布局,对此我非常感谢。布局称为 MigLayout,它是第三方资源。您必须下载并导入它。请注意,您不必拥有 MigLayout,但最好使用它,因为它易于使用。在我将布局约束设置为填充并将 JPanel 停靠在中心后,我创建了一个扩展 JPanel 的新类,以便我可以更改绘制方法。在某种程度上,@Override 允许您为该扩展类重新创建方法。正如您所看到的,一旦绘制到那个图形类,那么您就一切就绪。您应该阅读更多内容。阅读您帖子下方的评论,他们提出了相当不错的材料。
任何我弄错的气垫船都会在下面的评论中说。所以也要找那个。
悬停修正:
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class GraphicExample extends JPanel {
private static final String IMG_FILE_PATH = "/media/01CCE00FA6888D80/" +
"Achieve/Eclipse/EmiloLadderSnack/src/photo.jpg";
private BufferedImage img;
public GraphicExample(BufferedImage img) {
this.img = img;
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
if (img != null) {
g.drawImage(img, 0, 0, this);
}
}
@Override
public Dimension getPreferredSize() {
if (img != null) {
return new Dimension(img.getWidth(), img.getHeight());
}
return super.getPreferredSize();
}
private static void createAndShowGui() {
try {
BufferedImage img = ImageIO.read(new File(IMG_FILE_PATH));
JFrame frame = new JFrame("GraphicExample");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new GraphicExample(img));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
// the easy way to display an image -- in a JLabel:
ImageIcon icon = new ImageIcon(img);
JLabel label = new JLabel(icon);
JOptionPane.showMessageDialog(frame, label);
} catch (IOException e) {
e.printStackTrace();
System.exit(-1);
}
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
我的初步建议:
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;
import javax.swing.JPanel;
import net.miginfocom.swing.MigLayout;
public class DrawCircle extends JFrame {
JPanel panel;
public DrawCircle(String title, int width, int height) {
this.setTitle(title);
this.setSize(width, height);
this.setLocationRelativeTo(null); // Center JFrame
this.setLayout(new MigLayout("fill")); // Download external jar
this.panel = new DrawOval();
this.add(panel, "dock center"); // Link: http://www.miglayout.com/
this.setVisible(true);
}
public class DrawOval extends JPanel {
Color color = new Color(1, 1, 1);
public DrawOval() {
}
@Override
public void paint(Graphics g) {
g.setColor(color.RED);
g.fillOval(0, 0, this.getWidth(), this.getHeight());
}
}
}