-1

我正在尝试将一个值插入 JDBC,我从一个组合框中获取一个值,在该组合框中我必须转换为一个 int 但查询没有将其识别为一个 int?它以数字形式打印到控制台。

这是最能复制问题的代码示例。

我尝试将输入转换为字符串然后解析它,但它仍然无法识别它。它就像它不会识别int。我有点难过。谢谢

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class AddingItemToComboBox implements ActionListener{

    JButton click = new JButton("Click me");
    JComboBox qty = new JComboBox();

    public AddingItemToComboBox(){
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel1 = new JPanel();
        panel1.setLayout(new FlowLayout());
        panel1.setSize(500,500);   

        click.addActionListener(this);
        qty.setBounds(10,270, 150, 20 );
        qty.setSize(80,30);
        qty.addItem(1);
        qty.addItem(2);
        qty.addItem(3);
        panel1.add(qty);
        panel1.add(click);
        frame.add(panel1);

        frame.setSize(300, 200);
        frame.setVisible(true);
    }

    @Override
    public void actionPerformed(ActionEvent e) {

        if(e.getSource() == click){

            int quan  =  (int)qty.getSelectedItem();    
            System.out.println(quan);

            //Connection to database
                    // Here is the problem "quan"
            con.insertProduct(qaun);



        }

    }
    public static void main(String[] args){

        AddingItemToComboBox aic = new AddingItemToComboBox();
    }

}

错误:线程“AWT-EventQueue-0”中的异常 java.lang.Error:未解决的编译问题:qaun 无法解析为变量

4

2 回答 2

3

你的变量是quan你正在使用的qaun

看着那(这con.insertProduct(qaun);

编译错误清楚地向您展示了这一点

错误:线程“AWT-EventQueue-0”中的异常 java.lang.Error:未解决的编译问题:qaun无法解析为变量

于 2013-04-24T20:09:37.097 回答
0

它以数字形式打印到控制台

此代码与

int quan  =  (int)qty.getSelectedItem();    
System.out.println(quan);

是相同的

System.out.println(Integer.toString(quan));

无法将数字打印为 int,因为您的控制台只能显示字符,因此必须将其转换为文本。

于 2013-04-24T20:07:19.067 回答