从arraylist元素中获取特定值

时间:2015-03-25 03:16:23

标签: java arrays swing jtextfield jlist

很抱歉,如果这是一个简单的答案或已被回答,但已搜索,无法找到任何内容。我目前正在使用DefaultListModel中的产品创建超市结帐行,每个产品都有名称,价格,重量和代码,如下所示

public class Product {
private String name;
private double weight;
private double price;
private int code;

public Product (){
}

public Product (String Name, double kg, double pounds, int id){
name = Name;
weight = kg;
price = pounds;
code = id;

public String toString (){
return name + " - " + "£" + price + "    Product # " + code;

将产品放入清单

public class productList extends DefaultListModel {
public productList (){
    super();
}
public void addProduct (String name, double weight, double price, int code){
super.addElement(new Product(name, weight, price, code));

这已在GUI中用于代码段中的结帐,如下所示

private DefaultListModel defaultMainList = new DefaultListModel();
//other code
currentBasket.setModel(defaultMainList); //currentBasket is name of jlist

    productsList = new productList();

    productsList.addProduct("bananas", 0.5, 0.99, 1);
    productsList.addProduct("apples", 0.8, 1.39, 2);
    //etc etc, other products emitted
    mainCheckoutList.setModel(productsList);
    //unimportant code
addBasketItem = new JButton();
        getContentPane().add(addBasketItem);
        addBasketItem.setText("Add >");
        addBasketItem.setBounds(215, 108, 62, 31);
        addBasketItem.addActionListener(new ActionListener(){
            public void actionPerformed (ActionEvent e){
                    defaultMainList.addElement(productsList.getElementAt(mainCheckoutList.getSelectedIndex()));
                mainTillPrice.setText((defaultMainList.toString()));

这个当前代码将左侧jlist中的项目(主要结帐列表,这是我的可用产品列表)添加到右边的jlist,这是我的购物篮。它还将右侧列表中的整个字符串添加到名为mainTillPrice的jtextfield中,我想知道是否有任何方法可以添加价格,例如。为香蕉对象添加0.99,然后添加后续项目添加他们的价格以保持运行总计。任何帮助将不胜感激,并再次抱歉解释或代码中的任何问题,我是相当新的。

1 个答案:

答案 0 :(得分:0)

好吧,我不会使用defaultMainList.toString()。您需要获取已添加的Product,获取price的{​​{1}}并将其添加到当前记录中。然后,需要将此值添加到Product文本字段

mainTillPrice

这将要求您创建一个名为public void actionPerformed (ActionEvent e){ Product product = (Product)mainCheckoutList.getSelectedItem(); defaultMainList.addElement(product); runningTally += product.getPrice(); mainTillPrice.setText(NumberFormat.getCurrencyInstance().format(runningTally)); 的实例字段,并假设您的runningTally

中有方法getPrice