Jsp+Servlet实现购物车功能

时间:2021-05-26

本文实例为大家分享了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!

简单的购物车 到此结束!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章