html调用servlet(JDBC在Servlet中的使用)(2)

5.修改数据

5.1编写查询条件页面

修改单条数据的时候,首先是查询出单个数据的详细信息,然后根据实际需要部分修改或者全部修改。修改之后,数据会提交到数据库,数据库中保存更新以后的数据。

查询出单条数据的查询条件页面代码如下:

QueryToUpdate.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>QueryToUpdate.html</title><meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="this is my page"><meta http-equiv="content-type" content="text/html; charset=UTF-8"><!--<link rel="stylesheet" type="text/css" href="./styles.css">--></head><body><form name="f1" id="f1" action="/jdbc_servlet/servlet/QueryToUpdateServlet" method="post"><table border="0"><tr><td>请输入要修改的部门编号:</td><tr></tr><td><input type="text" name="id" ></td></tr><tr><td colspan="2" align="left"><input type="submit" value="提交"></td></tr></table></form></body>
</html>

5.2 编写显示部门详细信息的Servlet

输入要修改的部门编号以后,进入根据部门编号查询部门信息的Servlet,把部门详细信息显示到页面中,一些不可以修改的字段可以设置成只读,这样就不会把这些数据修改了,该Servlet的代码如下:

QueryToUpdateServlet.java

package com.cn.update;import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;public class QueryToUpdateServlet extends HttpServlet {/*** Destruction of the servlet. <br>*/public void destroy() {super.destroy(); // Just puts "destroy" string in log// Put your code here
    }/*** The doGet method of the servlet. <br>** This method is called when a form has its tag value method equals to get.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html;charset=gb2312");request.setCharacterEncoding("gb2312");PrintWriter out = response.getWriter();String id = request.getParameter("id");Connection con = null;PreparedStatement pstmt = null;ResultSet rs = null;try {Class.forName("com.mysql.jdbc.Driver");System.out.println("创建驱动成功!");con = DriverManager.getConnection("jdbc:mysql://localhost:3306/bank", "root", "1234");System.out.println("数据库连接成功!");String sql = "SELECT * FROM dept WHERE id=?";pstmt = con.prepareStatement(sql);pstmt.setString(1, id);rs = pstmt.executeQuery();} catch (ClassNotFoundException e) {// TODO Auto-generated catch block
            e.printStackTrace();} catch (SQLException e) {// TODO Auto-generated catch block
            e.printStackTrace();}//显示单个部门的信息out.println("<html>"+ "<head><title>显示单个部门信息</title></head>"+ "<body>");out.println("<h1>显示单个部门信息</h1><br><br>");out.print("<form action='/jdbc_servlet/servlet/UpdateDeptServlet' method='post'>");try {while(rs.next()){out.println("部门编号:");out.print("<br>");//在文本框中显示部门编号,设置成只读out.println("<input type='text' name='id' readonly='true' value=");out.println(rs.getString(1).toString());out.print(">");out.print("<br>");out.println("部门名称:");out.print("<br>");//在文本框中显示部门名称out.println("<input type='text' name='d_name' value=");out.println(rs.getString(2).toString());out.print(">");out.print("<br>");out.println("部门地址:");out.print("<br>");//在文本框中显示部门地址out.println("<input type='text' name='address' value=");out.println(rs.getString(3).toString());out.print(">");out.print("<br>");out.println("部门人数:");out.print("<br>");//在文本框中显示部门人数out.println("<input type='text' name='empnumber' value=");out.println(rs.getString(4).toString());out.print(">");out.print("<br>");//提交按钮out.print("<input type='submit' value='Submit'>");out.print("</form>");}} catch (SQLException e) {// TODO Auto-generated catch block
            e.printStackTrace();}out.flush();out.close();}/*** The doPost method of the servlet. <br>** This method is called when a form has its tag value method equals to post.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html;charset=gb2312");request.setCharacterEncoding("gb2312");PrintWriter out = response.getWriter();this.doGet(request, response);out.flush();out.close();}/*** Initialization of the servlet. <br>** @throws ServletException if an error occurs*/public void init() throws ServletException {// Put your code here
    }}

5.3编写处理修改操作的Servlet

在UpdateDeptServlet中,修改数据以后,显示出数据库表中的全部信息。UpdateDeptServlet的代码如下:

UpdateDeptServlet.java

package com.cn.update;import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;public class UpdateDeptServlet extends HttpServlet {/*** The doGet method of the servlet. <br>** This method is called when a form has its tag value method equals to get.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html");PrintWriter out = response.getWriter();this.doPost(request, response);out.flush();out.close();}/*** The doPost method of the servlet. <br>** This method is called when a form has its tag value method equals to post.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html;charset=gb2312");request.setCharacterEncoding("gb2312");PrintWriter out = response.getWriter();Connection con = null;PreparedStatement ps = null;ResultSet rs = null;Statement sta = null;String id = request.getParameter("id");String address = request.getParameter("address");int empnumber = Integer.parseInt(request.getParameter("empnumber"));String d_name = request.getParameter("d_name");try {Class.forName("com.mysql.jdbc.Driver");System.out.println("创建驱动成功!");con = DriverManager.getConnection("jdbc:mysql://localhost:3306/bank", "root", "1234");System.out.println("数据库连接成功!");String sql = "UPDATE dept SET id=?,address=?,empnumber=?,d_name=? WHERE id=?";ps = con.prepareStatement(sql);//下面设置修改的数据值ps.setString(1, id);ps.setString(2, address);ps.setInt(3, empnumber);ps.setString(4, d_name);ps.setString(5, id);ps.executeUpdate();System.out.println("修改成功!");/** 添加成功后,显示全部信息*/sta = con.createStatement();rs = sta.executeQuery("SELECT * FROM dept");//在页面中显示表中的所有信息
            out.println("<html>"+"<head><title>部门表信息</title></head>"+"<body>");out.println("<h1>部门表信息:</h1><br><br>");//循环遍历输出查询结果while(rs.next()){out.print("部门编号:");out.print(rs.getString(1)+"\t");out.print("部门名称:");out.print(rs.getString(2)+"\t");out.print("部门地址:");out.print(rs.getString(3)+"\t");out.print("部门人数:");out.print(rs.getString(4)+"\t");out.println("<br>");}out.print("</body></html>");out.close();} catch (ClassNotFoundException e) {// TODO Auto-generated catch block
            e.printStackTrace();} catch (SQLException e) {// TODO Auto-generated catch block
            e.printStackTrace();}    out.flush();out.close();}/*** Initialization of the servlet. <br>** @throws ServletException if an error occurs*/public void init() throws ServletException {// Put your code here
    }}

6. 删除数据

删除数据时,要指定删除的条件,否则会把表中的所有数据删除。删除以后,被删除的数据在表中就不存在了。下面的例子是根据部门编号删除数据的例子。首先在页面中输入要删除的部门编号,输入要删除的部门编号的页面代码入下:

delete.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>delete.html</title><meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="this is my page"><meta http-equiv="content-type" content="text/html; charset=gb2312"><!--<link rel="stylesheet" type="text/css" href="./styles.css">--></head><body><form name="f1" id="f1" action="/jdbc_servlet/servlet/DeleteByIdServlet" method="post"><table border="0"><tr><td>请输入要删除的部门编号:</td><tr></tr><td><input type="text" name="id" ></td></tr><tr><td colspan="2" align="left"><input type="submit" value="删除"></td></tr></table></form></body>
</html>

当输入删除条件后,单击【删除】按钮,会进入form表单指定的DeleteByIdServlet中,这是一个servlet,用来处理删除操作。DeleteByIdServlet中的代码如下:

DeleteByIdServlet.java

package com.cn.delete;import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;public class DeleteByIdServlet extends HttpServlet {/*** The doGet method of the servlet. <br>** This method is called when a form has its tag value method equals to get.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html");PrintWriter out = response.getWriter();this.doPost(request, response);out.flush();out.close();}/*** The doPost method of the servlet. <br>** This method is called when a form has its tag value method equals to post.* * @param request the request send by the client to the server* @param response the response send by the server to the client* @throws ServletException if an error occurred* @throws IOException if an error occurred*/public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html;charset=gb2312");request.setCharacterEncoding("gb2312");PrintWriter out = response.getWriter();String id = request.getParameter("id");Connection con = null;
//        ResultSet rs = null;PreparedStatement ps = null;try {Class.forName("com.mysql.jdbc.Driver");System.out.println("创建驱动成功!");con = DriverManager.getConnection("jdbc:mysql://localhost:3306/bank", "root", "1234");System.out.println("数据库连接成功!");String sql = "DELETE FROM dept WHERE id=?";ps = con.prepareStatement(sql);ps.setString(1, id);ps.executeUpdate();System.out.println("删除成功!");//显示结果信息out.println("<html><head><title>"+"删除部门表数据</title></head>"+"<body>");out.println("<h1>删除部门表数据成功!</h1>");out.print("</body></html>");} catch (ClassNotFoundException e) {// TODO Auto-generated catch block
            e.printStackTrace();} catch (SQLException e) {// TODO Auto-generated catch block
            e.printStackTrace();}out.flush();out.close();}/*** Initialization of the servlet. <br>** @throws ServletException if an error occurs*/public void init() throws ServletException {// Put your code here
    }}

在DeleteByIdServlet中,获得页面传递过来的部门编号,然后根据部门编号删除该编号对应的数据,删除成功则在页面中提示删除成功。

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

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

相关文章

gulp基础使用方法记录

一、开始 使用gulp&#xff0c;需知道4个API&#xff1a; gulp.task():用来定义任务, 格式&#xff1a;gulp.task(name[, deps], fn) name 为任务名 deps 是当前定义的任务需要依赖的其他任务&#xff0c;为一个数组。当前定义的任务会在所有依赖的任务执行完毕后才开始执行。如…

dolphinscheduler简单任务定义及复杂的跨节点传参

&#x1f680; 优质资源分享 &#x1f680; 学习路线指引&#xff08;点击解锁&#xff09;知识定位人群定位&#x1f9e1; Python实战微信订餐小程序 &#x1f9e1;进阶级本课程是python flask微信小程序的完美结合&#xff0c;从项目搭建到腾讯云部署上线&#xff0c;打造一…

【 Grey Hack 】万金油脚本:常见端口漏洞检测

目录脚本源码用法效果及示例SSH 端口FTP 端口版本&#xff1a;Grey Hack v0.7.3618 - Alpha 适用于SSH (22) 端口、FTP (21) 端口、HTTP (80) 端口、SMTP (25) 端口及3306/3307 端口 。 脚本源码 if params.len ! 2 or params[0] "-h" or params[0] "--help…

JUC源码学习笔记1——AQS和ReentrantLock

&#x1f680; 优质资源分享 &#x1f680; 学习路线指引&#xff08;点击解锁&#xff09;知识定位人群定位&#x1f9e1; Python实战微信订餐小程序 &#x1f9e1;进阶级本课程是python flask微信小程序的完美结合&#xff0c;从项目搭建到腾讯云部署上线&#xff0c;打造一…

Android 应用内直接跳转酷市场

不确定酷市场后期是否还会该包名或者路径,目前的7.9 版本测试通过. private void gotoCoolapkMarket() {try {Intent intent new Intent(Intent.ACTION_VIEW);intent.setData(Uri.parse("market://details?id" getPackageName()));intent.setClassName("com.…

【 Grey Hack 】万金油脚本:常见端口获取shell

目录脚本源码用法效果及示例成功示例FTP &#xff08;21&#xff09;端口HTTP &#xff08;80&#xff09;端口失败示例版本&#xff1a;Grey Hack v0.7.3618 - Alpha 适用于SSH (22) 端口、FTP (21) 端口、HTTP (80) 端口、SMTP (25) 端口及3306/3307 端口。 脚本源码 if pa…

Date 类型转换

Date类型默认固定输出格式是 “Fri Apr 12 17:26:23 CST 2013” 该类型属性本身无法改变格式&#xff0c;要想在前台jsp等页面呈现出你想要的格式就需要改变类型。 Date 转换成 String      转换成其它如“YYYY-MM-DD”,"YYYY-MM-DD hh:mm:ss"等之类的格式 Si…

ECharts整合HT#160;for#160;Web的网络拓扑图应用

ECharts图形组件在1.0发布的时候我就已经有所关注&#xff0c;今天在做项目的时候遇到了图标的需求&#xff0c;在HT for Web上也有图形组件的功能&#xff0c;但是在尝试了下具体实现后&#xff0c;发现HT for Web的图形组件是以矢量的格式来呈现的&#xff0c;在展现上可以有…

一个月后,我们又从 MySQL 双主切换成了主 - 从!

&#x1f680; 优质资源分享 &#x1f680; 学习路线指引&#xff08;点击解锁&#xff09;知识定位人群定位&#x1f9e1; Python实战微信订餐小程序 &#x1f9e1;进阶级本课程是python flask微信小程序的完美结合&#xff0c;从项目搭建到腾讯云部署上线&#xff0c;打造一…

如何进行有效的沟通----日常沟通及会议

日常开发和工作中会经常遇到沟通不畅的问题&#xff0c;"communication" 不论是在学术还是实践中都是一个很重要的议题。因为低效的沟通造成的开发事故有时候是灾难性的。 沟通的问题为认为本质上就是信息不对称。下面以日常沟通及会议沟通做一些浅显的讨论&#xff…

【 Grey Hack 】万金油脚本:常见端口获取Password

目录脚本源码用法效果及示例SSH &#xff08;80&#xff09;端口FTP &#xff08;21&#xff09;端口HTTP &#xff08;80&#xff09;端口失败示例SMTP &#xff08;25&#xff09;端口版本&#xff1a;Grey Hack v0.7.3618 - Alpha 适用于SSH (22) 端口、FTP (21) 端口、HTTP…

什么时候用synchronized

解决安全问题的方式&#xff1a; java中提供了一个同步机制&#xff1a; 解决原理&#xff1a;让多条操作共享数据的代码在某一个时间段&#xff0c;被一个线程执行完&#xff0c;在执行过程中&#xff0c;其它线程不可以参与执行 同步格式&#xff1a; 同步代码块&#xff1a;…

pygame写游戏,常用代码记录

2019独角兽企业重金招聘Python工程师标准>>> pygame 写起游戏来还是挺不错的&#xff0c;不过我也没用过别的什么东西写&#xff0c;所以也没什么发言权。 些游戏我是从这篇文章开始入门的13岁天才儿童教你写游戏 下面是一些常用的代码片段&#xff0c;记录下来&…

每天一个linxu命令6之jps  查看java进程的端口

jps -- Java Virtual Machine Process Status Tool 可以列出本机所有Java进程的pid jps [ options ] [ hostid ] 选项 -q 仅输出VM标识符&#xff0c;不包括class name,jar name,arguments in main method -m 输出main method的参数 -l 输出完全的包名&#xff0c;应用主类名&…

聊聊 C++ 中几类特殊成员函数

&#x1f680; 优质资源分享 &#x1f680; 学习路线指引&#xff08;点击解锁&#xff09;知识定位人群定位&#x1f9e1; Python实战微信订餐小程序 &#x1f9e1;进阶级本课程是python flask微信小程序的完美结合&#xff0c;从项目搭建到腾讯云部署上线&#xff0c;打造一…

poj2975——Caesar密码

原题&#xff1a; Description 据说最早的 密码来自于罗马的凯撒大帝。消息加密的办法是&#xff1a;对消息原文中的每个字母&#xff0c;分别用该字母之后的第5个字母替换&#xff08;例如&#xff1a;消息原文中的每个字母A都分别替换成字母F&#xff09;。而你要获得消息原文…

有趣的面试题

MR找共同朋友&#xff0c;数据格式如下&#xff1a; A B C D E F B A C D E C A B E D A B E E A B C D F A 第一字母表示本人&#xff0c;其他是他的朋友&#xff0c;找出有共同朋友的人&#xff0c;和共同朋友是谁 1 import java.io.IOException;2 import java.util.Set;3 im…

mysql 数据库定时备份 增量/全备份

echo 开始:$Begin 结束:$Last $GZDumpFile succ >> $LogFilecd $BakDir/daily/bin/rm -f * 2&#xff09;增量备份脚本&#xff08;脚本中mysql的数据存放路径是/home/mysql/data&#xff0c;具体根据自己的实际情况进行调整&#xff09;[roottest-huanqiu ~]# vim /root…

【 Grey Hack 】万金油脚本:路由器漏洞检测

目录脚本源码用法效果及示例版本&#xff1a;Grey Hack v0.7.3618 - Alpha 脚本源码 if params.len ! 2 or params[0] "-h" or params[0] "--help" then exit("<b>Usage: "program_path.split("/")[-1]" [ip_address] […

中小企业ERP实施的项目管理

目前&#xff0c;我国正在大力推行企业信息化建设&#xff0c;作为一种包含了现代管理思想的ERP(Enterprise Resource Planning)系统日益成为现代企业业务运作的主要工具&#xff0c;为了提升管理水平&#xff0c;提升企业竞争力&#xff0c;在一些实力较强的企业纷纷导入ERP之…