我需要显示多个图像,以便用户可以比较它们,我不确定使用什么方法。我有一个允许用户选择图像文件的应用程序,所以我有一个文件对象。我尝试使用“new”生成新的 GUI,但效果不佳。
我应该编写一个独立的应用程序(带有主程序)并使用系统调用来使用新的 JVM 启动它们吗?我是 Java 新手,刚刚接触了 AWT 和 SWING 的表面。
因此调用该类,其中 name 是任意唯一的字符串:
ImageWindowStub iw = new ImageWindowStub(name);
这是一个简单的代码,如果连续调用则演示该问题。
package fireScience.airborne.image;
import java.awt.Dimension;
import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingConstants;
import javax.swing.SwingUtilities;
import javax.swing.border.BevelBorder;
public class ImageWindowStub {
private static JFrame frame;
private static JPanel statusPanel;
private static JLabel statPixInfoLbl;
private static String theString;
public ImageWindowStub(String theString) {
this.theString = theString;
statusPanel = new JPanel();
createAndShowGui();
}
private static void createAndShowGui() {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
frame = new JFrame(theString);
JFrame.setDefaultLookAndFeelDecorated(true);
frame.setResizable(true);
frame.setSize(300, 200);
frame.setLocation(50, 50);
statusPanel = new JPanel();
statusPanel.setBorder(new BevelBorder(BevelBorder.LOWERED));
statusPanel.setPreferredSize(new Dimension(frame.getWidth(), 24));
statusPanel.setLayout(new BoxLayout(statusPanel,
BoxLayout.X_AXIS));
statPixInfoLbl = new JLabel("Status Bar");
statPixInfoLbl.setHorizontalAlignment(SwingConstants.LEFT);
statusPanel.add(statPixInfoLbl);
frame.add(statusPanel);
frame.pack();
frame.setVisible(true);
}
});
}
}
我的核心问题是“生成 GUI 类的多个独立实例的最佳方法是什么?”