如何存储从JTextFields获得的数据,JComboBox& JSpinners?

时间:2014-12-04 20:48:45

标签: java swing user-interface

背景:我正在为Cruise公司创建一个GUI。我开发了一个GUI,您可以在其中“添加巡航”到系统中。我目前正在努力学习如何获取输入的所有数据并存储数据。

我有以下摆动组件:

  1. JTextField - 输入Cruise名称
  2. JcomboBox的(2) - 选择开始和结束端口
  3. JSpinner s(2) - 进入巡航开始&结束日期。
  4. 问题:点击“添加巡航”按钮后,理想情况下我希望将新的Cruise信息存储在巡航ArrayList中:

    public ArrayList <Cruise> cruises;
    

    但是我不确定如何从swing组件获取数据并在用户点击“Add Cruise”时将它们添加到ArrayList,因为并非所有swing组件都是String格式。我该怎么做?

    我是如何创建组件的:

    1. 的JTextField

      Cruisename = new JTextField();
      contentPane2.add(Cruisename);
      Frame2.add(contentPane2, BorderLayout.CENTER);
      Frame2.setVisible(true);
      
    2. JComboBox for Start Port(结束端口JComboBox类似地使用相同的String值)

      startL = new JComboBox();
      final JComboBox typeList2;
      final String[] typeStrings2 = {
            "", "Tobermory","Oban", "Isle of Mull", "Isle of Harris",
            "Lewis and Harris", "Stornoway", "Skye", "Portree"};
      startL = new JComboBox(typeStrings2);
      
    3. JSpinners for Start&amp;结束日期

      SpinnerModel model1 = new SpinnerDateModel();
      JSpinner spinner1 = new JSpinner(model1);
      

2 个答案:

答案 0 :(得分:2)

对于JComboBox,您提供了一个字符串数组。它存储为一个对象数组,但您可以将其强制转换为字符串。

String foo = (String) myComboBox.getSelectedItem();

在这种情况下,您可以投射它,因为您正在存储字符串。如果您要存储Potato,则可以将其转换为:

class Potato {
    String name;
    double value;
    String toString() {
        return name;
    }
}

Potato bar = (Potato) myComboBox.getSelectedItem();

然后,您可以将值从Potato

中拉出来
double value = bar.value;

对于JSpinner,由于您已将其存储为SpinnerDateModel,因此您需要Date out还是String out。我会约会。字符串可以从日期推断出来。

Date date = ((SpinnerDateModel) spinner1.getModel()).getDate();

在大多数情况下,放入Swing对象的任何内容都将作为Object返回,但您可以随时将其转换为您所知道的内容,以获得所需的值。

如果您有不同的数据模型,它应该与comboBox类似地运行。

答案 1 :(得分:0)

基本上,您需要将用户的选择投射到字符串,因为选择的类型为Object。从那里,您需要创建Cruise对象的实例并将其添加到列表中。

您的代码应该类似于以下内容:

public class Cruise
{
    private String cruiseName;
    private String endPort;

    public String getCruiseName()
    {
        return cruiseName;
    }

    public String getEndPort()
    {
        return endPort;
    }

    public void setCruiseName(String iCruiseName)
    {
        if(iCruiseName == null)
        {
            throw new IllegalArgumentException("Cruise name is null!");
        }

        cruiseName = iCruiseName;
    }

    public void setEndPort(String iEndPort)
    {
        if(iEndPort == null)
        {
            throw new IllegalArgumentException("End port is null!");
        }

        endPort = iEndPort;
    }

}

public class MainClass
{
    private List<Cruise> cruiseList;
    private JComboBox cruiseSelectionCombobox;
    private JTextField cruiseNameField;
    private JButton addCruiseButton;

    public MainClass()
    {
        cruiseList = new ArrayList<Cruise>();
        cruiseSelectionCombobox = new JComboBox(new String[] {"Cozumel port", "Eastern port", "Alaskan port"});
        addCruiseButton = new JButton("Add cruise");
        cruiseNameField = new JTextField();

        registerListener();
    }

    private void registerListener()
    {
        addCruiseButton.addActionListener(new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                addCruiseToList();
            }
        });
    }

    private void addCruiseToList()
    {
        String endPort = (String)cruiseSelectionCombobox.getSelectedItem();
        if(endPort == null)
        {
            throw new IllegalArgumentException("Cruise port is null!");
        }

        String name = cruiseNameField.getText().trim();
        if(name == null)
        {
            throw new IllegalArgumentException("Cruise name is null!");
        }

        Cruise newCruise = new Cruise();
        newCruise.setCruiseName(name);
        newCruise.setEndPort(endPort);

        cruiseList.add(newCruise);
    }
}