实验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.mzph.cn/bicheng/5443.shtml

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

相关文章

Element-UI 快速入门

Element-UI 快速入门 引言 在现代Web开发中&#xff0c;前端界面的构建对用户体验至关重要。Element-UI是一个基于Vue.js的组件库&#xff0c;它提供了丰富的界面组件&#xff0c;帮助开发者快速构建出美观且功能全面的网页应用。本文将作为你的快速入门指南&#xff0c;带你…

nvm pnpm powershell

nvm 下载 在 nvm 安装路径下修改 settings.txt root: e:\xxx\nvm path: e:\xxx\nodejs npm_mirror https://npmmirror.com/mirrors/npm/ node_mirror https://npmmirror.com/mirrors/node/nvm list available nvm install 18.20.2 nvm use 18.20.2npm config list npm config …

pta题库答案c语言

PTA&#xff08;Programming Teaching and Assignment&#xff0c;程序设计与教学&#xff09;平台提供了大量的C语言练习题和题目&#xff0c;这些题目覆盖了C语言的各个知识点&#xff0c;包括基础语法、函数、数组、指针、结构体、文件操作等。对于想要提高C语言编程能力的学…

Nginx配置Https缺少SSL模块

1、Linux下Nginx配置https nginx下载和安装此处就忽略&#xff0c;可自行百度 1.1、配置https 打开nginx配置文件 vim /opt/app/nginx/conf/nginx.conf相关https配置 server {listen 443 ssl; #开放端口server_name echarts.net;#域名#redirect to https#ssl on; #旧版#ssl证…

C语言-嵌入式-STM32:FreeRTOS说明和详解

Free即免费的&#xff0c;RTOS的全称是Real time operating system&#xff0c;中文就是实时操作系统。 注意&#xff1a;RTOS不是指某一个确定的系统&#xff0c;而是指一类操作系统。比如&#xff1a;uc/OS&#xff0c;FreeRTOS&#xff0c;RTX&#xff0c;RT-Thread 等这些都…

linux装R

2020-021 Anaconda装R - 知乎 因为要装rpy2 发现是服务器端 自己的虚拟环境没有装R&#xff0c;具体安装过程 参考上面那个链接 最后还要配一下R的环境

应用监控(Prometheus + Grafana)

可用于应用监控的系统有很多&#xff0c;有的需要埋点(切面)、有的需要配置Agent(字节码增强)。现在使用另外一个监控系统 —— Grafana。 Grafana 监控面板 这套监控主要用到了 SpringBoot Actuator Prometheus Grafana 三个模块组合的起来使用的监控。非常轻量好扩展使用。…

pnpm:基础使用及详解

pnpm 是一个快速、高效的包管理器&#xff0c;用于安装、管理和构建 JavaScript 项目的依赖项。它的设计理念是减少重复的模块安装&#xff0c;节省磁盘空间&#xff0c;并提供更快的安装和运行速度。 基础使用&#xff1a; 安装 pnpm&#xff1a;在终端中运行以下命令安装 pn…

JDK-Mac系统和Windows系统安装及Java版本新特性(java9 - java19)

过去岁月不可追&#xff0c; 未来日子要珍惜。 莫愁身外七八事&#xff0c; 且尽眼前两三杯。 当你纠结于过去之时&#xff0c;懊恼与悔恨难免会让你陷入不欢。 当你忧愁于未来之时&#xff0c;未知与不安又会逐渐侵蚀你的心灵。 勿要纠结于过去&#xff0c;勿要忧愁于未来&…

使 Elasticsearch 和 Lucene 成为最佳向量数据库:速度提高 8 倍,效率提高 32 倍

作者&#xff1a;来自 Elastic Mayya Sharipova, Benjamin Trent, Jim Ferenczi Elasticsearch 和 Lucene 成绩单&#xff1a;值得注意的速度和效率投资 我们 Elastic 的使命是将 Apache Lucene 打造成最佳的向量数据库&#xff0c;并继续提升 Elasticsearch 作为搜索和 RAG&a…

排序算法1

文章目录 排序算法冒泡排序代码Python 插入排序代码Python 选择排序代码Python 小结 排序算法 这里先写几种排序算法 排序算法&#xff0c;经典的几种排序算法&#xff0c;就那么几个&#xff0c;如下&#xff1a; 冒泡排序插入排序选择排序归并排序快速排序 这一篇&#xf…

透视天气:数据可视化的新视角

数据可视化在天气方面能够为我们带来极大的帮助。天气是人类生活中一个重要的因素&#xff0c;对于农业、交通、航空、能源等各个领域都有着重要的影响。而数据可视化技术通过将复杂的天气数据转化为直观、易懂的图表、图像或地图等形式&#xff0c;为我们提供了更深入、更全面…

图像处理:时域、空域、频率的滤波介绍

首先要搞清楚为什么会呈现出不同域的维度&#xff0c;来理解和处理图像&#xff0c;原因是图像的构成有多个维度的信息特点。比如一段视频从时间顺序来看&#xff0c;相邻的2个图像帧绝大部分信息是相同的&#xff0c;这就构成了前向预测的理论基础&#xff1b;比如一帧图像从空…

HTTP 与 HTTPS

HTTP 浅谈 HTTP HTTPS 浅谈 HTTPS HTTP 与 HTTPS区别 HTTP&#xff08;Hypertext Transfer Protocol&#xff09;和HTTPS&#xff08;Hyper Text Transfer Protocol Secure&#xff09;在多个方面存在显著的区别&#xff0c;这些区别主要体现在以下几个方面&#xff1a; 特…

如何提升制造设备文件汇集的可靠性和安全性?

制造设备文件汇集通常指的是将与制造设备相关的各种文档和资料进行整理和归档的过程。这些文件可能包括但不限于&#xff1a; 生产数据&#xff1a;包括生产计划、订单信息、生产进度等。 设计文件&#xff1a;如CAD图纸、设计蓝图、产品模型等。 工艺参数&#xff1a;用于指…

腾讯实习后端c++一面-2024.4.29

你这两个项目觉得有什么比较难的地方吗&#xff1f;为什么会采用这样的技术栈&#xff1f;对是的。这个项目你在其中是做哪些部分&#xff1f;你可以说一下你在华为做的是一些什么。我应该问的是常用的。你说一下虚函数它是怎么实现的&#xff1f;你了解c11的一些特性吗&#x…

PaddlePaddle与OpenMMLab

产品全景_飞桨产品-飞桨PaddlePaddle OpenMMLab算法应用平台

ElasticSearch常用操作API

基础操作 以下均为[GET]操作 查看ElasticSearch全部索引 http://{ip}:9200/_cat/indices?v 查看ElasticSearch集群节点 http://{ip}:9200/_cat/nodes?v 查看ElasticSearch版本信息 http://{ip}:9200/ 查看ElasticSearch集群状态 http://{ip}:9200/_cluster/health?pretty …

AnyMP4 Blu-ray Ripper for Mac:您的蓝光影音转换专家

AnyMP4 Blu-ray Ripper for Mac&#xff0c;一款功能强大的蓝光影音转换软件&#xff0c;让您的蓝光内容焕发新生。 AnyMP4 Blu-ray Ripper for Macv9.0.58激活版下载 它采用最高效的解决方案&#xff0c;将蓝光光盘翻录为任何您想要的视频格式&#xff0c;无论是MP4、MKV还是A…

NLP Step by Step -- 如何微调一个模型(1)

文章目录 数据处理从模型中心&#xff08;Hub&#xff09;加载数据集预处理数据集动态填充 使用 Trainer API 微调模型Training评估 数据处理 这一小节学习第一小节中提到的“如何使用模型中心&#xff08;hub&#xff09;大型数据集”&#xff0c;下面是我们用模型中心的数据…