显示浏览过的商品 (代码简化)
在商品列表显示servlet中:
List<Goods>entities = gService.findAll(); //通过findAll方法查询出所有商品
//输出显示所有商品
For(Goodsentity:entities){
Out.println(entity.getId()+"<ahref=\"detail.do?id="+entity.getId()+"\">"+entity.getName()+"</a>"+entity.getPrice());
}
//显示浏览过的商品信息
//声明浏览过的商品的value值
String value =null;
Cookiecookies[] = request.getCookies();//获取cookie
//遍历cookie信息
For(inti=0;cookies!=null&&i<cookies.length();i++){
If("goodsHistory".equals(cookies[i].getName()){
Value = cookies[i].getValue();
}
}
If(value!=null){
//拆分
String ids[] = value.split("\\_");
//输出信息
For(int i=0;i<ids.length;i++){
Out.println(gService.findById(Integer.parsetInt(ids[i]));
}
}
显示商品详细信息servlet中:
String id=request.getParameter("id");//得到传过来的商品Id;
Integer numId = Integer.parseInt(id);//类型转换;
Goods entity = gService.findById(numId);//根据Id查询出该商品
//输出显示商品详细信息
Out.println(entity.getId()+entity.getName()+entity.getPrice());
String value = makeCookieValue(request,id);//设置cookie信息
//产生一个cookie对象
Cookie cookie = new Cookie("goodsHistory",value);
cookie.setMaxAge(3600);//设置cookie有效期
cookie.setPath("/20111024");
response.addCookie(cookie);//响应
//方法设置cookievalue值内容
Private StringmakeCookieValue(HttpServletRequest request, String id){
StringgoodsHistory = null;
//第一步:获取cookie
Cookie cookies[] = request.getCookies();
For(inti=0;cookies!=null&&i<cookies.lenth();i++{
//在请求的所有cookie中匹配名字为goodsHistory的cookie
if("goodsHistory".equals(cookies[i].getName())){
goodsHistory = cookies[i].getValues();
}
}
//第一次访问 最大三次 goodsHistoty = null goodsHistory = id goodsHistory=1
//第二次访问goodsHistory=1 id=2 goodsHistory=2_1;
//第三次访问goodsHistory=2-1 io=3 goodsHistory=3_2_1;
//第四次访问 goodsHistory=3_2_1 id=2goodsHistory=2_3_1;
//第四次访问goodsHistory=3_2_1 id=4goodsHistory=4_3_2;
If(goodsHisoty==null){
goodsHistory =id;
}else{
LinkedList<String>list = new LinkedList<String>(Arrys.asList(goodsHistory.split("\\_")));
If(list.contains(id)){
List.remove(id);
list.addFirst(id);
}else{
If(list.sizi()>=3){
list.removeLast();
list.addFirst(id);
}else{
list.addFirst(id);
}
}
StringBuffer sb= new StringBuffer();
For(Stringids:list){
Sb.append(ids+"_");
}
sb.deleteCharAt(sb.lenth()-1);
godsHistory=sb.toString();
}
Return goodsHistory;
}