我需要显示多个图像, 以便用户可以比较它们, 我不知道使用什么方法 。 我有一个程序允许用户选择图像文件, 所以我有一个文件对象 。 我曾尝试用“ 新” 生成新的图形界面, 但效果不好 。
Should I code a standalone app (with a main) and use a system call to start them with a new JVM? I m new at Java and have just touched the surface of AWT and SWING.
此类的名称是任意的独有字符串 :
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);
}
});
}
}
我的核心问题是“什么是产生多重独立图形用户界面类的最佳方式?”