我创建了JDialog
的扩展名。
public class ImageDialog extends JDialog implements ActionListener {
private JTextField textField;
public ImageDialog(JFrame parent, String title,
String message, BufferedImage bufferedImage) {
super(parent, title, true);
if (parent != null) {
Dimension parentSize = parent.getSize();
Point p = parent.getLocation();
setLocation(p.x + parentSize.width / 4, p.y + parentSize.height / 4);
}
this.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
this.setModal(true);
JPanel frame = new JPanel();
frame.setLayout(new BoxLayout(frame, BoxLayout.Y_AXIS));
frame.add(new JLabel(message), BorderLayout.PAGE_START);
JLabel lblimage = new JLabel(new ImageIcon(bufferedImage));
frame.add(lblimage, BorderLayout.CENTER);
textField = new JTextField(1);
frame.add(textField, BorderLayout.PAGE_END);
getContentPane().add(frame);
JPanel buttonPane = new JPanel();
JButton button = new JButton("OK");
buttonPane.add(button);
button.addActionListener(this);
getContentPane().add(buttonPane, BorderLayout.SOUTH);
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
pack();
setVisible(true);
}
public String getTextField() {
return textField.getText();
}
public void actionPerformed(ActionEvent e) {
setVisible(false);
dispose();
}
}
它运行良好并且做了它应该做的事情,除了jvm在使用后不会关闭。我用它如下:
ImageDialog dlg = new ImageDialog(new JFrame(), "Important question", "How many fluffy bunnies do you see?", img);
System.out.println(dlg.getTextField());
dlg.dispose();
但是当程序完成时,JVM就会挂起。有什么方法可以解决这个问题吗?
答案 0 :(得分:5)
您需要为框架设置setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
或在任何其他地方:
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
关闭对话框程序后将退出。
对于对话框,您应设置DISPOSE_ON_CLOSE
关闭操作属性。对话框取决于帧。关闭相框时,程序将结束。
这就是为什么不要忘记让你的画面可见。
修改强>
而不是:
ImageDialog dlg = new ImageDialog(new JFrame(), "Screen captcha", "Enter the letters from the image", img);
System.out.println(dlg.getTextField());
dlg.dispose();
你应该是这样的:
JFrame f = new JFrame();
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
f.setVisible(true);
//ideally frame should have a button that creates the dialog and sets it to visible
// no need to dispose dialog here
答案 1 :(得分:3)
在这个SSCCE中似乎工作得很好,它使用DISPOSE_ON_CLOSE
作为对话框和框架。
注意:当处理Java虚拟机(VM)中的最后一个可显示窗口时,VM可能会终止。
如果应用程序,该注释很重要。始终使用DISPOSE_ON_CLOSE
,VM无法终止。它表明存在一个流浪的非守护程序线程(amok?)。最好找到该线程的来源并采取合理的行动来优雅地终止它。
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.swing.*;
public class ImageDialog extends JDialog implements ActionListener {
private JTextField textField;
public static void main(String[] args) {
JFrame f = new JFrame("Image Dialog Test");
BufferedImage bi = new BufferedImage(128,50,BufferedImage.TYPE_INT_RGB);
f.setLocationByPlatform(true);
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f.setSize(400,100);
f.setVisible(true);
new ImageDialog(f, "Hi!", "Hello World", bi);
}
public ImageDialog(JFrame parent, String title,
String message, BufferedImage bufferedImage) {
super(parent, title, true);
if (parent != null) {
Dimension parentSize = parent.getSize();
Point p = parent.getLocation();
setLocation(p.x + parentSize.width / 4, p.y + parentSize.height / 4);
}
this.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
this.setModal(true);
JPanel frame = new JPanel();
frame.setLayout(new BoxLayout(frame, BoxLayout.Y_AXIS));
frame.add(new JLabel(message), BorderLayout.PAGE_START);
JLabel lblimage = new JLabel(new ImageIcon(bufferedImage));
frame.add(lblimage, BorderLayout.CENTER);
textField = new JTextField(1);
frame.add(textField, BorderLayout.PAGE_END);
getContentPane().add(frame);
JPanel buttonPane = new JPanel();
JButton button = new JButton("OK");
buttonPane.add(button);
button.addActionListener(this);
getContentPane().add(buttonPane, BorderLayout.SOUTH);
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
pack();
setVisible(true);
}
public String getTextField() {
return textField.getText();
}
public void actionPerformed(ActionEvent e) {
setVisible(false);
dispose();
}
}
答案 2 :(得分:2)
//Set all your:
.DISPOSE_ON_CLOSE
//to:
.EXIT_ON_CLOSE
//and if dispose(); is the last thing to happen change it to:
System.exit(0);
编辑评论答案:
System.gc();
dialog.setVisible(false);
只要你的程序正在运行,JVM就会运行,所以我没有看到它的问题。