为什么我的组合框不执行我在ItemListener中声明的内容?当我单击组合框内的项目时,程序挂起,我需要关闭整个BlueJ。请看看我的代码有什么问题

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;

public class HulaHoops {

private Scanner inp = new Scanner(System.in);

public static void main(String[]args) {
    EventQueue.invokeLater(new Runnable()
    {
        @Override
        public void run()
        {
            new HulaHoops();
        }
    });
}

public HulaHoops() {
    JFrame frame = new JFrame();
    JPanel panel = new JPanel();
    String choices[] = {"Shoes","Comb","Ball"};
    JComboBox combo = new JComboBox(choices);
    combo.setBackground(Color.gray);
    combo.setForeground(Color.red);
    panel.add(combo);
    frame.add(panel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(300,100);
    frame.setVisible(true);


    combo.addItemListener(new ItemListener () {
        @Override
        public void itemStateChanged(ItemEvent e)
        {
            String item = (String)e.getItem();
            if (e.getStateChange () == ItemEvent.SELECTED)
            {
                System.out.println("You chose " +item);
                    if (item == "Shoes")
                    {
                        System.out.println("Enter quantity: ");
                        int bilang = inp.nextInt();
                        int total = bilang * 99;
                        String order = bilang + " " + "Shoes " + "     " + total;
                        System.out.print("" + order);
                    }

                    else if (item == "Comb")
                    {
                        System.out.println("Enter quantity: ");
                        int bilang = inp.nextInt();
                        int total1 = bilang * 99;
                        String order1 = bilang + " " + "Comb " + "     " + total1;
                        System.out.print("" + order1);
                    }

                    else if (item == "Ball")
                    {
                        System.out.println("Enter quantity: ");
                        int bilang = inp.nextInt();
                        int total2 = bilang * 99;
                        String order2 = bilang + " " + "Ball " + "     " + total2;
                        System.out.print("" + order2);
                    }
            }

        }
    });
}


}

最佳答案

您所做的基本错误是使用==运算符比较两个String对象。
您应该改用以下条件:

if (item .equals("Shoes"))
if (item .equals("Comb"))
if (item .equals("Ball"))


作为JOptionPane的简短演示,我将更改后的代码放到这里...希望可以帮助您了解如何正确处理这种情况...

    //combo box, the program hangs I need to close the entire BlueJ. Please take a look what is wrong in my code
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;

public class HulaHoops  {

private Scanner inp = new Scanner(System.in);

public static void main(String[]args) {
    EventQueue.invokeLater(new Runnable()
    {
        @Override
        public void run()
        {
            new HulaHoops();
        }
    });
}

public HulaHoops() {
    JFrame frame = new JFrame();
    JPanel panel = new JPanel();
    String choices[] = {"Shoes","Comb","Ball"};
    JComboBox combo = new JComboBox(choices);
    combo.setBackground(Color.gray);
    combo.setForeground(Color.red);
    panel.add(combo);
    frame.add(panel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(300,100);
    frame.setVisible(true);


    combo.addItemListener(new ItemListener () {
        @Override
        public void itemStateChanged(ItemEvent e)
        {
            String item = (String)e.getItem();
            if (e.getStateChange () == ItemEvent.SELECTED)
            {
                System.out.println("You chose " +item);
                    if (item.equals("Comb"))
                    {
            Object val = JOptionPane.showInputDialog("Please input quantity of comb");
            System.out.println(val);

                        Integer bilang= Integer.valueOf((String)val);
                        int total = bilang * 99;
                        String order = bilang + " " + "Shoes " + "     " + total;
                        System.out.print("" + order);
                    }


            }
    }
    });
    }
}

关于java - ItemListener不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15253571/

10-08 22:52