抱歉打扰大家。

总体问题:我正在尝试打开一个对话框,让用户输入内容然后将其关闭

问题:-未调用函数(我认为)
       -主要问题是,当我使用debug时,它工作正常,因此很难找到问题所在

我在使用JButton时遇到麻烦,
它可以在调试中正常运行,但不能正常运行。这可能是因为我正在使用无限循环。网上有人建议我使用SwingUtilities,但是那没用(至少我不认为。

/**
 *
 * @author Deep_Net_Backup
 */
public class butonTest extends JFrame  {
String name;
boolean hasValue;

//name things
private JLabel m_nameLabel;
private JTextField m_name;

//panel
private JPanel pane;

//button
private JButton m_submit;

//action listener for the button submit
class submitListen implements ActionListener {
    public void actionPerformed(ActionEvent e) {
        submit();
        System.out.println("Test");
    }
}

//constructor
public butonTest(){
    //normal values
    name = null;
    hasValue = false;
    //create the defauts
    m_nameLabel = new JLabel("Name:");
    m_name = new JTextField(25);
    pane = new JPanel();
    m_submit = new JButton("Submit");
    m_submit.addActionListener(new submitListen());
    //

    setTitle("Create Cat");
    setSize(300,200);
    setResizable(false);

    //add components
    pane.add(m_nameLabel);
    pane.add(m_name);

    pane.add(m_submit);

    add(pane);
    //last things
    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

}

//submit
private void submit()
{
    System.out.println("submit");
    name = m_name.getText();
    hasValue = true;
}

//hasValue
public boolean hasValue()
{
    return(hasValue);

}

//get the text name
public String getName()
{
    return(name);
}

public void close()
{
    setVisible(false);
    dispose();
}

public static void main(String[] args)
{

    /* Test 1
    boolean run = true;
    String ret = new String();
    butonTest lol = new butonTest();

    while(run)
    {
        if(lol.hasValue())
        {
            System.out.println("Done");
            run = false;
            ret = new String(lol.getName());
            lol.close();
        }
    }



    System.out.println(ret);*/

    //Tset 2
    /*
    SwingUtilities.invokeLater(new Runnable(){
        @Override
        public void run() {
            butonTest lol = new butonTest();
            if(lol.hasValue())
            {
                System.out.println(lol.getName());
            }
        }
    });*/

}

}


编辑:
它是如何工作的:当我运行Test时,程序将打印测试并提交,然后应将hasValue更改为true。这将(希望)允许if语句运行以打印完成。这不会发生。

编辑2:
我刚刚添加了几行用于进一步测试2张照片,这似乎已经解决了问题(但这很不好)
System.out.println(“ hasValue” + hasValue); ->到hasValue()函数
System.out.println(“设置为true”); ->提交()函数

最佳答案

您所做的事情过于复杂,超出了必要。可以将侦听器作为匿名类,而不是将侦听器作为单独的类。这样,您可以在外部类(butonTest.this)上获取一个句柄,并在其上调用您想要的任何方法。

m_submit.addActionListener(new ActionListener() {

    @Override
    public void actionPerformed(ActionEvent e) {
        submit();
        System.out.println("Test");
        butonTest.this.close();
    }
});


我不确定您要如何处理无限循环。无论如何,在显示对话框之前,它已经运行完毕。

稍微了解一下事件处理在Swing中的工作方式将很有帮助:)

10-05 18:47