Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 写入actionListner以在确认后在控制台上显示表单输入_Java_User Interface - Fatal编程技术网

Java 写入actionListner以在确认后在控制台上显示表单输入

Java 写入actionListner以在确认后在控制台上显示表单输入,java,user-interface,Java,User Interface,我目前正在构建一个GUI,它允许我向系统中添加新的巡航。我想编写一个actionListner,一旦用户单击ok,表单输入将显示为控制台上的输出 我目前有以下草稿来完成这项任务: ok = new JButton("Add Cruise"); ok.setToolTipText("To add the Cruise to the system"); ok.addActionListener(new ActionListener() {

我目前正在构建一个GUI,它允许我向系统中添加新的巡航。我想编写一个actionListner,一旦用户单击ok,表单输入将显示为控制台上的输出

我目前有以下草稿来完成这项任务:

    ok = new JButton("Add Cruise");
            ok.setToolTipText("To add the Cruise to the system");
            ok.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent event){
                int selected = typeList2.getSelectedIndex();
                String tText = typeList2[selected];
                Boolean addtheCruise = false;
                addtheCruise = fleet.addCruise(); 

                fleet.printCruise();

                if (addtheCruise)
                { 
                    frame.setVisible(false);
                }
                else
                {   // Report error, and allow form to be re-used
                    JOptionPane.showMessageDialog(frame,
                    "That Cruise already exists!", "Error",
                    JOptionPane.ERROR_MESSAGE);
                }                       
            }
        });        
        buttonPanel.add(ok);
以下是表单输入框的其余代码:

 contentPane2 = new JPanel (new GridLayout(18, 1)); //row, col 
            nameInput = new JLabel ("Input Cruise Name:");
            nameInput.setForeground(normalText);
            contentPane2.add(nameInput);
            Frame2.add(contentPane2);

            Cruisename = new JTextField("",10);
            contentPane2.add(Cruisename);
            Frame2.add(contentPane2, BorderLayout.CENTER);
            Frame2.setVisible(true);

            confirmPanel = new JPanel ();
            confirmPanel.setLayout(new FlowLayout(FlowLayout.CENTER));
            confirmPanel.setBorder(BorderFactory.createLineBorder(Color.PINK));

            addItinerary = new JButton("Add Itinerary");
            confirmPanel.add(Add);
            confirmPanel.add(addItinerary );
            Frame2.add(confirmPanel, BorderLayout.PAGE_END);
            Frame2.setVisible(true);

                contentPane2.add(Cruisename);
                Frame2.add(contentPane2);

            // add spacing between comboboxes
            contentPane2.add(Box.createRigidArea(new Dimension(5,0)));

            contentPane2.setBorder(BorderFactory.createLineBorder(Color.black));

           //Label for start and end location jcombobox
            CruiseMessage = new JLabel ("Enter Start and End Location of new Cruise:");
            CruiseMessage.setForeground(normalText);
            contentPane2.add(CruiseMessage);
            Frame2.add(contentPane2);               

            /**
             * creating start location JComboBox
             */

            startL = new JComboBox();
            final JComboBox typeList2;
            final String[] typeStrings2 = {
                "Select Start Location", "Tobermory","Oban", "Isle of Mull", "Isle of Harris",
                "Lewis and Harris", "Stornoway", "Skye", "Portree"};

            startL = new JComboBox(typeStrings2);

            contentPane2.add(startL);
            Frame2.add(contentPane2, BorderLayout.CENTER);
            Frame2.setVisible(true);

            // add spacing between comboboxes
            contentPane2.add(Box.createRigidArea(new Dimension(5,0)));

            /**
             * creating end location JComboBox
             */

            endL = new JComboBox();
            final JComboBox typeList3;
            final String[] typeStrings3 = {
                "Select End Location", "Tobermory","Oban", "Isle of Mull", "Isle of Harris",
                "Lewis and Harris", "Stornoway", "Skye", "Portree"};

            endL = new JComboBox(typeStrings3);

            contentPane2.add(endL);

            Frame2.add(contentPane2, BorderLayout.CENTER);
            Frame2.setVisible(true);

            // add spacing between comboboxes
            contentPane2.add(Box.createRigidArea(new Dimension(5,0)));

              //Label for select ship jcombobox
            selectShipM = new JLabel ("Select Ship to assign Cruise:");
            selectShipM.setForeground(normalText);
            contentPane2.add(selectShipM);
            Frame2.add(contentPane2);   

            /**
             * creating select ship JCombobox
             * select ship to assign cruise
             */

             selectShip = new JComboBox();
            final JComboBox typeList4;
            final String[] typeStrings4 = {
                "Select Ship", "Dalton Princess", "Stafford Princess" };

            selectShip = new JComboBox(typeStrings4);

            contentPane2.add(selectShip);
            Frame2.add(contentPane2, BorderLayout.CENTER);
            Frame2.setVisible(true);
我需要上面代码的所有表单输入在完成后显示在控制台上

总结: 1.我有两艘船在一个舰队里 2.要添加新的邮轮,必须选择所有字段名称、开始日期、结束日期、船舶

问题是: 1.在创建舰队=新舰队时,我不断出现错误;在我的构造函数中。尽管我已经在课堂上宣布了。 2.在下面的代码草案中,第5行表示typeList2,但是,我有两个JComboBox——两个不同类型的字符串,分别对应于代码其余部分中显示的两个下拉菜单。如何将两个类型列表输入到输出中,而不是仅输入一个

多谢各位