JOptionPane并从输入中获取文本

问题描述 投票:2回答:3

我创建了一个打开JOptionPane的按钮。它允许用户输入string..>> String str = JOptionPane.showInputDialog如何获取用户输入到joptionpane的文本并使用它来搜索userobjects?

非常感谢

java string swing joptionpane
3个回答
6
投票

返回的String是用户输入的内容,如果用户选择取消,则返回null:

String whatTheUserEntered = JOptionPane.showInputDialog(...);
if (whatTheUserEntered == null) {
    System.out.println("The user canceled");
}

1
投票

虽然@JB Nizet已经给出了一个很好的答案。我想添加一个简短的代码示例,仅供参考,如果有人再次寻找此问题。

public class JOptionPaneExample

{私人双倍价格;

private JTextField priceField;

private JLabel priceLabel;

public JOptionPaneExample()
{
    priceField = new JTextField(10);
}

public void createAndDisplayGUI()
{
    int selection = JOptionPane.showConfirmDialog(null, getPanel(), "Price Form : ", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);

    if (selection == JOptionPane.OK_OPTION)
    {
        price = Double.valueOf(priceField.getText());

        JOptionPane.showMessageDialog(null, "Price is : " + Double.toString(price), "Price : ", JOptionPane.PLAIN_MESSAGE);
    }
    else if (selection == JOptionPane.CANCEL_OPTION)
    {
        // Do something here.
    }
}

private JPanel getPanel()
{
    JPanel basePanel = new JPanel();
    basePanel.setOpaque(true);
    basePanel.setBackground(Color.BLUE.darker());

    JPanel centerPanel = new JPanel();
    centerPanel.setLayout(new GridLayout(3, 2, 5, 5));
    centerPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
    centerPanel.setOpaque(true);
    centerPanel.setBackground(Color.WHITE);

    priceLabel = new JLabel("Enter Price : ");

    centerPanel.add(priceLabel);
    centerPanel.add(priceField);

    basePanel.add(centerPanel);

    return basePanel;
}

}

可以找到相同的代码this blog


0
投票

你的目的有点不清楚,但从我如何理解你只想知道如何输入信息,这可以通过简单地调用变量来完成。

要查看变量中的内容,请使用System.out.println(变量名称);

请定义userobjects?

希望这可以帮助。

© www.soinside.com 2019 - 2024. All rights reserved.