web-dev-qa-db-ja.com

Java-WindowClosingが実際にウィンドウを閉じるのを防ぐ方法

私はほとんどの人にとって逆の問題を抱えているようです。ユーザーがウィンドウを閉じる前に保存を実行するかどうかを確認するための次の非常に標準的なコードがあります。

  frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
  frame.addWindowListener(new WindowAdapter() {
     public void windowClosing(WindowEvent ev) {
      boolean close = true;
         // check some files, asking if the user wants to save
         // YES and NO handle OK, but if the user hits Cancel on any file,
         //   I want to abort the close process     
         // So if any of them hit Cancel, I set "close" to false
      if (close) {
          frame.dispose();
          System.exit(0);
         }
       }            
});

何を試しても、windowClosingから出ると、ウィンドウは常に閉じます。 WindowAdapterをWindowListenerに変更しても違いはありません。奇妙なのは、ドキュメンテーションに明示的に「このイベントの処理中にプログラムがウィンドウを明示的に非表示または破棄しない場合、ウィンドウのクローズ操作がキャンセルされる」ということですが、それは私にはうまくいきません。フレームでxを処理する他の方法はありますか? TIA

50
Paul Morrison

この最小限のテストケースを試したところです。

import Java.awt.event.WindowAdapter;
import Java.awt.event.WindowEvent;

import javax.swing.JFrame;
import javax.swing.WindowConstants;

public class test {

    public static void main(String[] args) {
        final JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
        frame.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent ev) {
                //frame.dispose();
            }
        });
        frame.setVisible(true);

    }

}

破棄の呼び出しにコメントを付けたまま、閉じるボタンを押しても、ウィンドウは終了しません。コメントを外して閉じるボタンを押すと、ウィンドウが閉じます。

「close」変数を設定するために、ロジックに何か問題があると推測する必要があります。ダブルチェックしてみてください。

67

これが重要な要素です:frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);は、作成したテストケースに違いをもたらします。

21
BenCole

あなたの問題がどこにあるかわからない、

import javax.swing.*;
import Java.awt.*;
import Java.awt.event.*;

public class ClosingFrame extends JFrame {

    private JMenuBar MenuBar = new JMenuBar();
    private JFrame frame = new JFrame();
    private static final long serialVersionUID = 1L;
    private JMenu File = new JMenu("File");
    private JMenuItem Exit = new JMenuItem("Exit");

    public ClosingFrame() {
        File.add(Exit);
        MenuBar.add(File);
        Exit.addActionListener(new ExitListener());
        WindowListener exitListener = new WindowAdapter() {

            @Override
            public void windowClosing(WindowEvent e) {
                int confirm = JOptionPane.showOptionDialog(frame,
                        "Are You Sure to Close this Application?",
                        "Exit Confirmation", JOptionPane.YES_NO_OPTION,
                        JOptionPane.QUESTION_MESSAGE, null, null, null);
                if (confirm == JOptionPane.YES_OPTION) {
                    System.exit(1);
                }
            }
        };
        frame.addWindowListener(exitListener);
        frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
        frame.setJMenuBar(MenuBar);
        frame.setPreferredSize(new Dimension(400, 300));
        frame.setLocation(100, 100);
        frame.pack();
        frame.setVisible(true);
    }

    private class ExitListener implements ActionListener {

        @Override
        public void actionPerformed(ActionEvent e) {
            int confirm = JOptionPane.showOptionDialog(frame,
                    "Are You Sure to Close this Application?",
                    "Exit Confirmation", JOptionPane.YES_NO_OPTION,
                    JOptionPane.QUESTION_MESSAGE, null, null, null);
            if (confirm == JOptionPane.YES_OPTION) {
                System.exit(1);
            }
        }
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                ClosingFrame cf = new ClosingFrame();
            }
        });
    }
}
7
mKorbel

このことの処理のために:
ユーザーが[はい]を選択した場合、その中かっこ内でsetDefaultCloseOperation(DISPOSE_ON_CLOSE);を使用します_if else_

キャンセルが選択されている場合は、setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);を使用します

例を考えてみましょう:

_int safe = JOptionPane.showConfirmDialog(null, "titleDetails!",  "title!!", JOptionPane.YES_NO_CANCEL_OPTION);

if(safe == JOptionPane.YES_OPTION){
    setDefaultCloseOperation(DISPOSE_ON_CLOSE);//yes

} else if (safe == JOptionPane.CANCEL_OPTION) {
    setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);//cancel
} else {
    setDefaultCloseOperation(DISPOSE_ON_CLOSE);//no
}
_
5
Jibin Mathew

あなたの問題がどこにあるのかわかりませんが、これは私のために機能します!

frame.addWindowListener(new WindowAdapter() {

            public void windowClosing(WindowEvent evt) {
                            int res=JOptionPane.showConfirmDialog(null,
                                    "Do you want to exit.?");
                            if(res==JOptionPane.YES_OPTION){
                                    Cal.this.dispose();
                            }
            }                               
        });

同じ問題を解決するために、私はこの記事の最初の答えを試しました。別のアプリケーションとして動作しますが、私の場合は動作しません。たぶん、違いはJFrame(in answer)とFrameView(私の場合)にあります。

public class MyApp extends SingleFrameApplication { // application class of my project
  ...
  protected static MyView mainForm; // main form of application
  ... 
}  
public class MyView extends FrameView {
    ...
    //Adding this listener solves the problem. 
    MyApp.getInstance().addExitListener(new ExitListener() {

      @Override
      public boolean canExit(EventObject event) {
        boolean res = false;
        int reply = JOptionPane.showConfirmDialog(null,
                "Are You sure?", "", JOptionPane.YES_NO_OPTION);
        if (reply == JOptionPane.YES_OPTION) {
          res = true;
        }
        return res;
      }
      @Override
      public void willExit(EventObject event) {
      }
    });
    ...
}   
1
user3463820

setDefaultCloseOperation()メソッドは問題の解決に役立ちます。https://chortle.ccsu.edu/Java5/Notes/chap56/ch56_9.html

このリンクを見る

0
user6195279