⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gwc.txt

📁 网上购书,可以实现网上购书,界面漂亮,代码易懂
💻 TXT
字号:
商品编码:shopID
商品数量:shopNumber


public void shopcar(int shopId,int shopNumber,HttpSession httpsession)
{
     HttpSession session=httpsession;
     String s=""
     if(session.getAttribute("shopcar")!=null)
     {
        s=session.getAttribute("shopcar");
                
      }
     s+=","+shopid+":"+shopNumber;
     session.setAttribute("shopcar",s);

}

读的时候用
String s=session.getAttribute("shopcar");
s.splip (","); //分割商品
s.splip (":");//分割商品id /商品数量

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -