1

Java Swing JDK1.5でGUIを開発したアプリケーションがあります。JDKをJDK1.6にアップグレードする予定ですが、アップグレードすると問題が発生します。

問題の説明:いくつかのダイアログ(たとえば10)を開いて破棄し、メソッド'getOwnedWindows()'を呼び出すと、JDK1.5では0が返されますが、JDK1.6では10が返されます。JDK1.6の場合と同様に、10を返します。アルゴリズムがgetOwnedWindowsを使用しているため、フォーカスを設定するアルゴリズムが正しく機能していません。 ()有効で現在開いているダイアログを取得します。

JDK1.6でこの問題を回避するための回避策を誰かに提案してもらえますか?

次のコードは、問題を示すことができます。

カスタムダイアログクラス:Javaコード:

import javax.swing.JDialog;
import java.awt.event.ActionListener;
import javax.swing.JPanel;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JButton;
import java.awt.event.ActionEvent;

public class CustomDialog extends JDialog implements ActionListener {
    private JPanel myPanel = null;
    private JButton yesButton = null;
    private JButton noButton = null;
    private boolean answer = false;
    public boolean getAnswer() { return answer; }

    public CustomDialog(JFrame frame, boolean modal, String myMessage) {
    super(frame, modal);
    myPanel = new JPanel();
    getContentPane().add(myPanel);
    myPanel.add(new JLabel(myMessage));
    yesButton = new JButton("Yes");
    yesButton.addActionListener(this);
    myPanel.add(yesButton);
    noButton = new JButton("No");
    noButton.addActionListener(this);
    myPanel.add(noButton); 
    pack();
    setLocationRelativeTo(frame);
    setVisible(true);
    //System.out.println("Constrtuctor ends");
    }

    public void actionPerformed(ActionEvent e) {
    if(yesButton == e.getSource()) {
        System.err.println("User chose yes.");
        answer = true;
        //setVisible(false);
    }
    else if(noButton == e.getSource()) {
        System.err.println("User chose no.");
        answer = false;
        //setVisible(false);
    }
    }

    public void customFinalize() {
        try {
            finalize();
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }
}

メインクラス:

Javaコード:

import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.ActionEvent;
import java.awt.FlowLayout;
import java.awt.Window;

public class TestTheDialog implements ActionListener {
    JFrame mainFrame = null;
    JButton myButton = null;
    JButton myButton_2 = null;

    public TestTheDialog() {
        mainFrame = new JFrame("TestTheDialog Tester");
        mainFrame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}
            });
        myButton = new JButton("Test the dialog!");
        myButton_2 = new JButton("Print no. of owned Windows");
        myButton.addActionListener(this);
        myButton_2.addActionListener(this);
        mainFrame.setLocationRelativeTo(null);

        FlowLayout flayout = new FlowLayout();
        mainFrame.setLayout(flayout);

        mainFrame.getContentPane().add(myButton);
        mainFrame.getContentPane().add(myButton_2);

        mainFrame.pack();
        mainFrame.setVisible(true);
    }

    public void actionPerformed(ActionEvent e) {
        if(myButton == e.getSource()) {
            System.out.println("getOwnedWindows 1 " + mainFrame.getOwnedWindows().length);
            createMultipleDialogs();

            int i = 0;
            for (Window singleWindow : mainFrame.getOwnedWindows()) {
                System.out.println("getOwnedWindows " + i++ + " "
                        + singleWindow.isShowing() + " "
                        + singleWindow.isVisible() + " " + singleWindow);
            }
            System.out.println("getOwnedWindows 2 " + mainFrame.getOwnedWindows().length);
            //System.gc();
            System.out.println("getOwnedWindows 3 " + mainFrame.getOwnedWindows().length);
            //System.gc();
            System.out.println("getOwnedWindows 4 " + mainFrame.getOwnedWindows().length);
        } else if (myButton_2 == e.getSource()) {
            System.out.println("getOwnedWindows now: " + mainFrame.getOwnedWindows().length);
        }
    }

    public void createMultipleDialogs() {
        for (int a = 0; a < 10; a++) {
            CustomDialog myDialog = new CustomDialog(mainFrame, false,
                    "Do you like Java?");
            myDialog.dispose();
            myDialog.customFinalize();
        }
    }

    public static void main(String argv[]) {

        TestTheDialog tester = new TestTheDialog();
    }
}

上記のコードを実行すると、JDK1.5とJDK1.6で異なる出力が得られます

この点であなたの助けをいただければ幸いです。

ありがとう

4

0 に答える 0