• <i id='1jc5c95q'><tr id='wco4n11b'><dt id='kjk7ih3c'><q id='hyixjb9l'><span id='nmpdtysb'><b id='03wigz7s'><form id='9k0o5xdp'><ins id='fg5mg67a'></ins><ul id='jvh67197'></ul><sub id='fzxgevls'></sub></form><legend id='dvohy2tg'></legend><bdo id='hbd64lf1'><pre id='92prunlv'><center id='h3ndm6b2'></center></pre></bdo></b><th id='3ysjm0wm'></th></span></q></dt></tr></i><div id='pyry9aeg'><tfoot id='hn3func2'></tfoot><dl id='cjnmvnzr'><fieldset id='uf61i0rl'></fieldset></dl></div>
    <legend id='2ewkxc1e'><style id='1cuqcgjg'><dir id='lwvovswn'><q id='yfmcpuxj'></q></dir></style></legend>

        <bdo id='rridx46k'></bdo><ul id='lvn2jjef'></ul>
      <tfoot id='c0cujlwk'></tfoot>
      1. <small id='4flviz05'></small><noframes id='n6j41nfz'>

      2. 欢迎来到入门教程网!

        Java编程

        当前位置:主页 > 软件编程 > Java编程 >

        java购物车原代码实现 java购物车应该用哪个集合实现

        来源:本站原创|时间:2023-04-11|栏目:Java编程|点击:

        java购物车怎么写?

        用Vector 或者是HashMap去装

        下面有部分代码你去看吧

        package com.aptech.restrant.DAO;

        import java.util.ArrayList;

        import java.util.HashMap;

        import java.util.List;

        import java.util.Map;

        import java.util.Set;

        import java.sql.Connection;

        import com.aptech.restrant.bean.CartItemBean;

        import com.aptech.restrant.bean.FoodBean;

        public class CartModel {

        private Connection conn;

        public CartModel(Connection conn) {

        this.conn=conn;

        }

        /**

        * 得到订餐列表

        *

        * @return

        */

        public List changeToList(Map carts) {

        // 将Set中元素转换成数组,以便使用循环进行遍历

        Object[] foodItems = carts.keySet().toArray();

        // 定义double变量total,用于存放购物车内餐品总价格

        double total = 0;

        List list = new ArrayList();

        // 循环遍历购物车内餐品,并显示各个餐品的餐品名称,价格,数量

        for (int i = 0; i foodItems.length; i++) {

        // 从Map对象cart中取出第i个餐品,放入cartItem中

        CartItemBean cartItem = (CartItemBean) carts

        .get((String) foodItems[i]);

        // 从cartItem中取出FoodBean对象

        FoodBean food1 = cartItem.getFoodBean();

        // 定义int类型变量quantity,用于表示购物车中单个餐品的数量

        int quantity = cartItem.getQuantity();

        // 定义double变量price,表示餐品单价

        double price = food1.getFoodPrice();

        // 定义double变量,subtotal表示单个餐品总价

        double subtotal = quantity * price;

        // // 计算购物车内餐品总价格

        total += subtotal;

        cartItem.setSubtotal(subtotal);

        cartItem.setTotal(total);

        list.add(cartItem);

        }

        return list;

        }

        /**

        * 增加订餐

        */

        public Map add(Map cart, String foodID) {

        // 购物车为空

        if (cart == null) {

        cart = new HashMap();

        }

        FoodModel fd = new FoodModel(conn);

        FoodBean food = fd.findFoodById(foodID);

        // 判断购物车是否放东西(第一次点餐)

        if (cart.isEmpty()) {

        CartItemBean cartBean = new CartItemBean(food, 1);

        cart.put(foodID, cartBean);

        } else {

        // 判断当前菜是否在购物车中,false表示当前菜没有被点过。。

        boolean flag = false;

        // 得到键的集合

        Set set = cart.keySet();

        // 遍历集合

        Object[] obj = set.toArray();

        for (int i = 0; i obj.length; i++) {

        Object object = obj[i];

        // 如果购物车已经存在当前菜,数量+1

        if (object.equals(foodID)) {

        int quantity = ((CartItemBean) cart.get(object))

        .getQuantity();

        quantity += 1;

        System.out.println(quantity);

        ((CartItemBean) cart.get(object)).setQuantity(quantity);

        flag = true;

        break;

        }

        }

        if (flag == false) {

        // 把当前菜放到购物车里面

        CartItemBean cartBean = new CartItemBean(food, 1);

        cart.put(foodID, cartBean);

        }

        }

        return cart;

        }

        /**

        * 取消订餐

        */

        public Map remove(Map cart, String foodID) {

        cart.remove(foodID);

        return cart;

        }

        /**

        * 更新购物车信息

        *

        * @param cart

        * @param foodID

        * @return

        */

        public MapString, CartItemBean update(Map cart, String foodID,

        boolean isAddorRemove) {

        Map map;

        if (isAddorRemove) {

        map = add(cart, foodID);

        } else {

        map = remove(cart, foodID);

        }

        return map;

        }

        }

        你好,java购物车代码?

        import java.awt.*;

        import java.awt.event.*;

        class ShopFrame extends Frame implements ActionListener

        { Label label1,label2,label3,label4;

        Button button1,button2,button3,button4,button5;

        TextArea text;

        Panel panel1,panel2;

        static float sum=0.0f;

        ShopFrame(String s)

        { super(s);

        setLayout(new BorderLayout());

        label1=new Label("面纸:3元",Label.LEFT);

        label2=new Label("钢笔:5元",Label.LEFT);

        label3=new Label("书:10元",Label.LEFT);

        label4=new Label("袜子:8元",Label.LEFT);

        button1=new Button("加入购物车");

        button2=new Button("加入购物车");

        button3=new Button("加入购物车");

        button4=new Button("加入购物车");

        button5=new Button("查看购物车");

        text=new TextArea("商品有:"+"\n",5,10);

        text.setEditable(false);

        addWindowListener(new WindowAdapter()

        { public void windowClosing(WindowEvent e)

        { System.exit(0);

        }

        }

        );

        button1.addActionListener(this);

        button2.addActionListener(this);

        button3.addActionListener(this);

        button4.addActionListener(this);

        button5.addActionListener(this);

        panel1=new Panel();

        panel2=new Panel();

        panel1.add(label1);

        panel1.add(button1);

        panel1.add(label2);

        panel1.add(button2);

        panel1.add(label3);

        panel1.add(button3);

        panel1.add(label4);

        panel1.add(button4);

        panel2.setLayout(new BorderLayout());

        panel2.add(button5,BorderLayout.NORTH);

        panel2.add(text,BorderLayout.SOUTH);

        this.add(panel1,BorderLayout.CENTER);

        this.add(panel2,BorderLayout.SOUTH);

        setBounds(100,100,350,250);

        setVisible(true);

        validate();

        }

        public void actionPerformed(ActionEvent e)

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

        { text.append("一个面纸、");

        sum=sum+3;

        }

        else if(e.getSource()==button2)

        { text.append("一只钢笔、");

        sum=sum+5;

        }

        else if(e.getSource()==button3)

        { text.append("一本书、");

        sum=sum+10;

        }

        else if(e.getSource()==button4)

        { text.append("一双袜子、");

        sum=sum+8;

        }

        else if(e.getSource()==button5)

        {

        text.append("\n"+"总价为:"+"\n"+sum);

        }

        }

        }

        public class Shopping {

        public static void main(String[] args) {

        new ShopFrame("购物车");

        }

        }

        我没用Swing可能显示不出来你的效果。不满意得话我在给你编一个。

        java中购物车的功能怎么实现

        一般利用session,当货物提交后,让session失效,这样就可以完成简单的购物车。用cookie保存本地也可以。看你的具体需求了。

        <small id='jrqiyd29'></small><noframes id='525w8j01'>

            <tbody id='4is5b3d4'></tbody>

              <bdo id='2n6mtj5j'></bdo><ul id='y8wse463'></ul>
              <legend id='6qcc22x5'><style id='gwkpxs4h'><dir id='v4q16ikr'><q id='st1esz25'></q></dir></style></legend>
              <i id='n0v6e1hr'><tr id='ynzvdu1u'><dt id='6aieuxqf'><q id='a9ds7fw2'><span id='id5quh2y'><b id='s14tczsf'><form id='vibc321i'><ins id='0nr25hzd'></ins><ul id='ewq2oxo3'></ul><sub id='cgrpuk0t'></sub></form><legend id='8iiy074q'></legend><bdo id='r0knmg9o'><pre id='8qtbz7zt'><center id='lr1apkel'></center></pre></bdo></b><th id='0oc35q0p'></th></span></q></dt></tr></i><div id='sar22j6a'><tfoot id='5b3ypiih'></tfoot><dl id='7bkaks2z'><fieldset id='epojzqfz'></fieldset></dl></div>
            • <tfoot id='2fdsx6hx'></tfoot>

                • 上一篇:穿梭框后端JAVA代码 穿梭框如何获取右边数据

                  栏    目:Java编程

                  下一篇:没有了

                  本文标题:java购物车原代码实现 java购物车应该用哪个集合实现

                  本文地址:https://www.xiuzhanwang.com/a1/Javabiancheng/17369.html

                  网页制作CMS教程网络编程软件编程脚本语言数据库服务器

                  如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

                  联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

                  Copyright © 2002-2020 脚本教程网 版权所有

                    1. <i id='ctbyqn63'><tr id='2c7tu2rd'><dt id='g1qcqshe'><q id='sandvzfe'><span id='nojq4v19'><b id='do7v9lld'><form id='mp7t3x70'><ins id='c1oh0egz'></ins><ul id='d4ua3c1d'></ul><sub id='wu7qyngx'></sub></form><legend id='ettclrlz'></legend><bdo id='6twqxcrc'><pre id='0qvj9cwf'><center id='youb6rzl'></center></pre></bdo></b><th id='axn7z3dv'></th></span></q></dt></tr></i><div id='veqy9lgk'><tfoot id='e4c61e3a'></tfoot><dl id='9q3urwb6'><fieldset id='kwgstabl'></fieldset></dl></div>
                    2. <tfoot id='7ns01vvo'></tfoot>
                    3. <small id='pb89037c'></small><noframes id='khpe11nl'>

                    4. <legend id='zkprn9j1'><style id='z6sj7l24'><dir id='dg719ia2'><q id='ir5qlk5t'></q></dir></style></legend>

                        <bdo id='aa22hn2x'></bdo><ul id='4dz1stfe'></ul>