Java—servlet简单使用

【步骤 1】创建一个名为 input.html 的 HTML 页面,其中包括一个表单,表单中包含两 个文本域,分别供用户输入学号和姓名,该页面也包含提交和重置按钮。
【步骤 2】定义一个名为 com.demo.Student 类,其中包括学号 sno 和姓名 name 两个 private 的成员变量,定义访问和修改 sno 和 name 的方法。
【步骤 3】编写名为 FirstServlet 的 Servlet,要求当用户在 input.html 中输入信息后点击 “提交”按钮,请求 FirstServlet 对其处理。在 FirstServlet 中使用表单传递的参数(学号和 姓名)创建一个 Student 对象并将其作为属性存储在 ServletContext 对象中,然后获得通过 ServletContext 的 getRequestDispatcher()方法获得 RequestDispatcher()对象,将请求转发到 SecondServlet。
【步骤 4】在 SecondServlet 中取出 ServletContext 上存储的 Student 对象,并显示输出 该学生的学号和姓名。在 SecondServlet 的输出中应该包含一个超链接,点击该连接可以返 回 input.html 页面。

源代码

Student类
public class Student {private String sno;private String name;public Student(String sno, String name) {this.sno = sno;this.name = name;}public String getSno() {return this.sno;}public void setSno(String sno) {this.sno = sno;}public String getName() {return this.name;}public void setName(String name) {this.name = name;}
}
FirstServlet类
public class FirstServlet extends HttpServlet {private static final long serialVersionUID = 1L;public FirstServlet() {}protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ServletContext servletContext = this.getServletContext();servletContext.setAttribute("stu", new Student(request.getParameter("sno"), request.getParameter("name")));servletContext.getRequestDispatcher("/SecondServlet").forward(request, response);}public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {this.doGet(request, response);}
}
SecondServlet类
public class SecondServlet extends HttpServlet {private static final long serialVersionUID = 1L;public SecondServlet() {}protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {response.setContentType("text/html;charset=UTF-8");ServletContext context = this.getServletContext();Student student = (Student)context.getAttribute("stu");PrintWriter out = response.getWriter();String title = "读取数据";String docType = "<!DOCTYPE html> \n";out.println(docType + "<html>\n" + "<head><title>" + title + "</title></head>\n" + "<body bgcolor=\"#f0f0f0\">\n" + "<h1 align=\"center\">" + title + "</h1>\n" + "<ul>\n" + "  <li><b>学号</b>:" + student.getSno() + "\n" + "  <li><b>姓名</b>:" + student.getName() + "\n" + "</ul>\n" + "<a href=\"http://localhost:8080/webDemo2_war_exploded/input.html\">访问输入页</a>" + "</body></html>");}public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {this.doGet(request, response);}
}

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

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

相关文章

phpstrom+phpstudy+postman

1.打开phpstudy xdebug 扩展 2.修改php.ini [XDebug]xdebug.profiler_output_dir"D:\phpStudy\tmp\xdebug"xdebug.trace_output_dir"D:\phpStudy\tmp\xdebug"zend_extension"D:\phpStudy\php\php-5.5.38\ext\php_xdebug.dll";是否允许Xdebug跟踪…

SIP协议

SIP协议 SIP协议主要包括 SIP头 SIP内容 和附加内容三个部分 项目格式备注示例SIP头一行&#xff0c;以\r\n结尾REGISTER sip:172.30.2.35 SIP/2.0\r\nSIP内容很多行&#xff0c;每行为Key&#xff0c;Value的形式CSeq: 1 REGISTER\r\n附加内容很多行1 SIP头 项目格式含义示例I…

android emmc 命令,使用CoreELEC的ceemmc工具将系统写入emmc

最近在折腾电视盒子&#xff0c;CoreELEC是专门为晶晨CPU开发系统&#xff0c;个人觉的非常不错&#xff0c;相关资料可以百度。这里介绍将卡载系统刷入emmc内置存储的方法。因为找不到相关的教程&#xff0c;只在官网上找到了ceemmc这个工具的使用说明&#xff0c;所以搬过来。…

ios 自定义字体_如何仅用几行代码在iOS应用中创建一致的自定义字体

ios 自定义字体by Yuichi Fujiki藤木雄一 In this article, youll learn how to create a unified custom look throughout your app with these simple tricks.在本文中&#xff0c;您将学习如何使用这些简单的技巧在整个应用程序中创建统一的自定义外观。 我们想做什么 (Wh…

truncate 、delete与drop区别

相同点&#xff1a; 1.truncate和不带where子句的delete、以及drop都会删除表内的数据。 2.drop、truncate都是DDL语句(数据定义语言),执行后会自动提交。 不同点&#xff1a; 1. truncate 和 delete 只删除数据不删除表的结构(定义)drop 语句将删除表的结构被依赖的约束(const…

Java—jsp编程

1. 编写 login.jsp&#xff0c;登录时只输入一个昵称。但要检查昵称是否已经被其他用户使用。 源代码 Login.jsp <% page contentType"text/html;charsetUTF-8" language"java" %><%request.setCharacterEncoding("UTF-8"); //设置编…

Java 8 Optional类深度解析

2019独角兽企业重金招聘Python工程师标准>>> 身为一名Java程序员&#xff0c;大家可能都有这样的经历&#xff1a;调用一个方法得到了返回值却不能直接将返回值作为参数去调用别的方法。我们首先要判断这个返回值是否为null&#xff0c;只有在非空的前提下才能将其作…

鸽子 迷信_人工智能如何帮助我战胜鸽子

鸽子 迷信鸽子回避系统 (Pigeon Avoidance System) Disclaimer: You are reading Part 1 that gives an overview of the project. Part 2 describes the technical setup and data collection. Part 3 is about how to train the Pigeon Recognition Model and run it on Rasp…

华为鸿蒙会议安排,2020华为HDC日程确定,鸿蒙、HMS以及EMUI 11成最关注点

原标题&#xff1a;2020华为HDC日程确定&#xff0c;鸿蒙、HMS以及EMUI 11成最关注点HDC&#xff1a;华为开发者大会&#xff0c;目前已经确定将在9月10日正式开幕。日前华为已经在其官网公布了HDC的日程&#xff0c;从现在的消息看华为开发者大会有三大点最受业内关注。鸿蒙操…

反射、元类

一、反射 1、什么是反射&#xff1a;就是反省&#xff0c;自省的意思 反射指的是一个对象应该具备&#xff0c;可以增、删、改、查属性的能力&#xff0c;通过字符串来操作属性 涉及的四个函数&#xff0c;这四个函数就是普通的内置函数&#xff0c;只是没有下划线而已&#xf…

Java—简单的图书管理系统

简单的图书管理系统 通过数据源和DAO对象访问数据库。其中JavaBeans实现模型&#xff0c;访问数据库&#xff0c;Servlet实现控制器&#xff0c;JSP页面实现视图。 • 模型包括2个JavaBean&#xff1a;BookBean用于存放图书信息&#xff0c;BookDAO用于访问数据库。 • 控制器包…

成功的秘诀是什么_学习编码的10个成功秘诀

成功的秘诀是什么This post was originally published on Coder-Coder.com.该帖子最初发布在Coder-Coder.com上 。 If you’re teaching yourself how to code, you may have more questions than answers when you’re starting out.如果您正在教自己如何编码&#xff0c;那么…

ZJUT 地下迷宫 (高斯求期望)

http://cpp.zjut.edu.cn/ShowProblem.aspx?ShowID1423 设dp[i]表示在i点时到达终点要走的期望步数&#xff0c;那么dp[i] ∑1/m*dp[j] 1&#xff0c;j是与i相连的点&#xff0c;m是与i相邻的点数。建立方程组求解。重要的一点是先推断DK到达不了的点。须要bfs预处理一下进行…

html收款页面模板,订单收款.html

&#xfeff;订单收款$axure.utils.getTransparentGifPath function() { return resources/images/transparent.gif; };$axure.utils.getOtherPath function() { return resources/Other.html; };$axure.utils.getReloadPath function() { return resources/reload.html; };…

pandas之时间数据

1.时间戳Timestamp() 参数可以为各种形式的时间&#xff0c;Timestamp()会将其转换为时间。 time1 pd.Timestamp(2019/7/13) time2 pd.Timestamp(13/7/2019 13:05) time3 - pd.Timestamp(2019-7-13) time4 pd.Timestamp(2019 7 13 13:05) time5 pd.Timestamp(2019 July 13 …

scikit keras_Scikit学习,TensorFlow,PyTorch,Keras…但是天秤座呢?

scikit kerasWelcome all! In the first episode of this series, I investigated the four most known machine learning frameworks and discussed which of these you should learn depending on your needs and goals.w ^迎阅读所有&#xff01; 在本系列的第一集中 &#…

程序员如何学习更好的知识_如何保持学习并成为更好的程序员

程序员如何学习更好的知识by Kevin Gardner凯文加德纳(Kevin Gardner) 如何保持学习并成为更好的程序员 (How to keep learning and become a better coder) Coding has come a long way since the days of Robert Taylor and ARPANET and Sir Tim Berners-Lee and CERN — an…

Educational Codeforces Round 25 C. Multi-judge Solving

题目链接&#xff1a;http://codeforces.com/contest/825/problem/C C. Multi-judge Solving time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputMakes solves problems on Decoforces and lots of other different onli…

Java—stream以及集合框架使用

1) 编写Student类&#xff0c;主要属性包括学号、姓名、性别、班级 2) 编写Score类&#xff0c;主要属性包括&#xff1a;学号、课程名、分数 3) 模拟期末考试的成绩统计应用场景&#xff0c;要求 (1) 所有学生名单及对应科目成绩已经初始化在数组中 (2) 要求输出每门课程的所有…

山东省2021年高考成绩查询平台6,山东2021年高考成绩改为6月26日前公布

6月11日&#xff0c;山东省教育厅举行2021年第一次高考新闻发布会&#xff0c;介绍2021年高考基本情况、评卷安排、成绩公布等相关工作。山东省教育招生考试院新闻发言人、普招处处长李春光介绍&#xff0c;根据近期国家有关工作要求和强基计划招生工作需要&#xff0c;原定于6…