实验15 MVC

二、实验项目内容(实验题目)

编写代码,掌握MVC的用法。

三、源代码以及执行结果截图:

inputMenu.jsp:

<%@ page contentType="text/html" %>

<%@ page pageEncoding = "utf-8" %>

<jsp:useBean id="menu" class ="save.data.MenuBean" scope="session"/>

<style>

   #textStyle{

      font-family:宋体;font-size:36;color:blue

   }

</style>

<HTML><body bgcolor=#ffccff>

<form action="addMenu" id= textStyle method=post>

输入餐单(每次输入一个消费项目)<br>

名称:<input type=text name='foodName' id =textStyle value ='剁椒鱼头' size = 8 />

价格:<input type=text name='price' id =textStyle value ='26.9' size = 8 />

<br><input type=submit id=textStyle value="添加到餐单">

</form>

</body></HTML>

showMenu.jsp:

<%@ page contentType="text/html" %>

<%@ page pageEncoding = "utf-8" %>

<jsp:useBean id="menu" class ="save.data.MenuBean" scope="session"/>

<style>

   #tom{

      font-family:宋体;font-size:26;color:blue

   }

</style>

<HTML><body bgcolor=pink>

<table border=1>

   <tr><th id=tom>序号</th><th id=tom>食物名称</th><th id=tom>价格</th>

<%  request.setCharacterEncoding("utf-8");

    String index = request.getParameter("删除");

    if(index!=null){

       menu.removeFood(Integer.parseInt(index));

    }

    for(int i=0;i<menu.size();i++){

        out.print("<tr>");

        out.print("<td id=tom>"+(i+1)+"</td>");

        out.print("<td id=tom>"+menu.getFoodName(i)+"</td>");

        out.print("<td id=tom>"+menu.getPrice(i)+"</td>");

        out.print("<td ><form action ="+"showMenu.jsp"+" method=post>");

        out.print("<input type = hidden name = 删除 value = "+i+" />");

        out.print("<input type = submit  value = 删除该食物 />");

        out.print("</form></td>");

        out.print("</tr>");

    }

  

%> </table>

<p id = tom>

餐单总额(共有<%=menu.size()%>道食物): 

<jsp:getProperty name="menu" property="totalPrice" /><br>

点餐时间:

<jsp:getProperty  name="menu" property="time" /></p>

<a id =tom href="inputMenu.jsp">继续点餐</a>

</body></HTML>

web.xml:

<?xml version="1.0" encoding="utf-8"?>

<web-app>

    <!--  以下是web.xml文件新添加的内容 -->

    <servlet>

        <servlet-name>addMenu</servlet-name>

        <servlet-class>handle.data.HandleMenu_Servlet</servlet-class>

    </servlet>

    <servlet-mapping>

        <servlet-name>addMenu</servlet-name>

        <url-pattern>/addMenu</url-pattern>

    </servlet-mapping>

</web-app>

Food:

package save.data;

public class Food implements Comparable<Food>{

    String foodName ;  

    double price;     

    public void setFoodName(String name){

        foodName = name;

    }

    public String getFoodName(){

        return foodName;

    }

    public void setPrice(double d){

        price = d;

    }

    public double getPrice(){

        return price;

    }

    public int compareTo(Food food){

        return (int)(food.getPrice()*1000-price*1000);

    }

}

MenuBean:

package save.data;

import java.util.ArrayList;

import java.util.Collections;

public class MenuBean {

    String time ;

    String totalPrice;

    ArrayList<Food> foodList;

    public MenuBean(){

        foodList = new ArrayList<Food>();

    }

    public void addFood(Food food){

        foodList.add(food);

        Collections.sort(foodList);

    }

    public void removeFood(int index){

        if(index>=0){

           foodList.remove(index);

           Collections.sort(foodList);

        }

    }

    public String getFoodName(int index) {

        return foodList.get(index).getFoodName();

    }

    public double getPrice(int index) {  

        return foodList.get(index).getPrice();

    }

    public int size() {

        return foodList.size();

    }

    public void setTime(String time){

        this.time = time

    }

    public String getTime(){

        return time

    }

    public String getTotalPrice(){

        double sum = 0;

        for(Food food:foodList){

          sum += food.getPrice();

        }

        totalPrice = String.format("%.2f",sum);

        return totalPrice;

    }

}

HandleMenu_Servlet:

package handle.data;

import save.data.Food;

import save.data.MenuBean;

import java.util.*;

import java.io.*;

import java.time.LocalTime;

import javax.servlet.*;

import javax.servlet.http.*;

public class HandleMenu_Servlet extends HttpServlet{

   public void init(ServletConfig config) throws ServletException{

       super.init(config);

   }

   public void service(HttpServletRequest request,HttpServletResponse response)

                       throws ServletException,IOException{

       request.setCharacterEncoding("utf-8");

       MenuBean menu  = null;

       HttpSession session=request.getSession(true);

       menu = (MenuBean)session.getAttribute("menu");

       if(menu == null ){

           menu = new MenuBean();

           session.setAttribute("menu",menu);

       }

       String foodName = request.getParameter("foodName");

       String price = request.getParameter("price");

       Food food = new Food();

       if(foodName.length()==0||price.length()==0){

            response.sendRedirect("inputMenu.jsp");

            return;

       }

       food.setFoodName(foodName);

       food.setPrice(Double.parseDouble(price));

       LocalTime dateTime = LocalTime.now(); 

       String str = dateTime.toString();

       String time =str.substring(0,str.lastIndexOf("."));

       menu.setTime(time);

       menu.addFood(food);

       response.sendRedirect("showMenu.jsp");

   }

}

运行结果图:

点餐:

增加菜单:

删除:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/660229.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

day15 学一下Tailwindcss(java转ts全栈/3r教室)

目前距离全栈差得最多的是前端&#xff0c;而对于前端主要是CSS一直不熟悉&#xff0c;觉得很复杂写起来总是不上道&#xff0c;所以特别关注下Tailwindcss吧&#xff0c;其他前端框架可以先放放&#xff0c;多说无益直接用tailwindcss做个页面试试 看下文档&#xff1a;Tailwi…

C语言面试题之相交链表

相交链表 实例要求 1、给定两个单链表的头节点 headA 和 headB &#xff0c;请你找出并返回两个单链表相交的起始节点。2、如果两个链表不存在相交节点&#xff0c;返回 null 。示例&#xff1a; 实例分析 可以使用两种方法&#xff1a;哈希表方法和双指针方法。哈希表方法…

利用Argo数据分别计算温度、盐度和温盐所造成的比容海平面变化

本文所用到的温盐数据集&#xff1a;IPRC&#xff08;美国夏威夷大学国际太平洋研究中心&#xff09; Argo data products | Argo (ucsd.edu)https://argo.ucsd.edu/data/argo-data-products/ 理论知识&#xff08;相关计算公式&#xff09;&#xff1a; 代码和工具包准备&…

芒果超媒财报解读:科技加持下,如何蜕变为内容“全科生”?

在降本增效和内容为王的基调下&#xff0c;国内头部长视频平台正在拥抱增长。 爱奇艺率先公布2023年财务数据&#xff0c;实现归母净利润19.25亿元&#xff0c;与2022年亏损1.36亿元相比&#xff0c;扭亏为盈且增幅显著。 而近日&#xff0c;随着新一季《浪姐》播出&#xff…

git 的迁移

现象是gitlab经常会挂掉&#xff0c;linux会显示磁盘空间不足&#xff0c;实际上&#xff0c;我们linux某个目录的空间是4T。这个空间应该是足够的。猜测是gitlab的安装目录不对导致的空间不足。 1、查找原因 用rpm 安装gitlab会有自己的目录&#xff0c;很多安装文件会在opt…

如何更好的使用cpm

nvidia发布了RAFT库&#xff0c;支持向量数据库的底层计算优化&#xff0c;RAFT 也使用CMake Package Manager( CPM )和rapids-cmake管理项目&#xff0c;可以方便快捷的下载到需要的对应版本的thirdparty的依赖库&#xff0c;但是&#xff0c;一般情况下&#xff0c;项目是直接…

nacos(docker部署)+springboot集成

文章目录 说明零nacos容器部署初始化配置高级配置部分访问权限控制命名空间设置新建配置文件 springboot配置nacos添加依赖编写测试controller 说明 nacos容器部署采用1Panel运维面板&#xff0c;进行部署操作&#xff0c;简化操作注意提前安装好1Panel和配置完成docker镜像加…

(三十二)第 5 章 数组和广义表(稀疏矩阵的十字链表存储表示实现)

1. 背景说明 2. 示例代码 1) errorRecord.h // 记录错误宏定义头文件#ifndef ERROR_RECORD_H #define ERROR_RECORD_H#include <stdio.h> #include <string.h> #include <stdint.h>// 从文件路径中提取文件名 #define FILE_NAME(X) strrchr(X, \\) ? strrch…

Linux - nohup 后台启动命令

目录 1. nohup启动 2. nohup与&&#xff0c;后台运行 3. nohup与>&#xff0c;日志重定向 4. nohup后台启动-综合使用(推荐) 5. 文件描述符-0 1 2 6. 知识扩展 6.1 不停止服务&#xff0c;直接清空nohup.out 6.2 只记录警告级别比较高的日志 6.3 不想输出日志 …

C#调用skiasharp操作并绘制图片

之前学习ViewFaceCore时采用Panel控件和GDI将图片及识别出的人脸方框和关键点绘制出来&#xff0c;本文将其修改为基于SKControl和SKCanvas实现相同的显示效果并支持保存为本地图片。   新建Winform项目&#xff0c;在Nuget包管理器中搜索并安装一下SkiaSharp和ViewFaceCore…

Centos 7 安装 Redis

Centos 7 安装 Redis 安装步骤1、安装软件源2、安装redis3、创建符号链接4、修改配置文件5、启动 redis6、停止redis 安装步骤 1、安装软件源 如果是Centos 8 直接yum install 就可以了 yum install -y redis但是如果是Centos 7&#xff0c;redis 默认的是 redis 3 系列&…

大数据技术就业和发展前景怎么样

大数据技术的就业和发展前景极为乐观&#xff0c;具有行业需求旺盛、就业多样性、可持续发展潜力等特点&#xff0c; 上大学网 &#xff08;www.sdaxue.com&#xff09;整理出了大数据技术的就业和发展前景以下几个关键趋势&#xff0c;供大家参考&#xff01; 行业需求旺盛&…