总体问题:我正在尝试打开一个对话框让用户输入内容然后关闭它
问题: - 没有调用函数(我认为) - 主要问题是当我使用调试它工作正常所以我很难找到问题
我遇到了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());
}
}
});*/
}
}
编辑: 它是如何工作的:当我运行测试程序将打印测试并提交然后它应该将hasValue更改为true。这将(希望)允许if语句运行以完成打印。这不会发生。
编辑2: 我刚刚添加了几行来进一步测试2个打印件,这似乎已经解决了问题(但这很糟糕) System.out.println(“hasValue”+ hasValue); - >到hasValue()函数 System.out.println(“设置为true”); - > submit()函数
答案 0 :(得分:1)
你做的事情太复杂了。您可以将其作为匿名类,而不是将侦听器作为单独的类。这样你就可以获得外部类(butonTest.this)的句柄,并调用你想要的任何方法。
m_submit.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
submit();
System.out.println("Test");
butonTest.this.close();
}
});
我不确定你在无限循环中尝试做什么。无论如何,它都会在你显示对话框之前完成。
阅读一下有关事件处理在Swing中的工作原理会有所帮助:)
答案 1 :(得分:1)
我担心你的构造函数butonTest()和submit()方法是不合适的 class(公共类butonTest扩展JFrame)。
你需要让他们进入你的班级: