📄 gwc.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 + -