本文实例为大家分享了Servlet实现购物车功能的具体代码,供大家参考,具体内容如下
(1)用servlet实现简单的购物车系统,项目结构例如以下:(新建web Project项目 仅仅须要AddItemServlet , ListItemServlet。exam403.jsp三个文件就可以。其它的不用管)
(2)exam403.jsp代码例如以下:
<html xmlns="http://.lc.shoppingCar;import javax.servlet.*;import javax.servlet.http.*;import java.io.*;import java.util.*;public class ListItemServlet extends HttpServlet { protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,java.io.IOException { ServletContext application=getServletContext() ; ServletConfig config=getServletConfig() ; response.setContentType("text/html;charset=gb2312"); PrintWriter out=response.getWriter(); HttpSession session =request.getSession(); request.setCharacterEncoding("gb2312"); //从session中获取购物车 HashMap shoppingCar=(HashMap)session.getAttribute("shoppingCar"); //显示购物车中的内容 if(shoppingCar!=null) { Set show=shoppingCar.entrySet(); Iterator it=show.iterator(); while(it.hasNext()) { out.print(it.next()+"<br>"); } } else out.print("购物车为空。"); } protected void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,java.io.IOException { doGet(request,response); }}(5)实现效果例如以下:
訪问:http://localhost:8080/servletProject/exam403.jsp 学则商品 提交
点击查看购物车:
OK!
简单的购物车 到此结束!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。