也是只帖代码。。。。不讲解。

1、search.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"> <title>My JSP 'find.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> </head> <body>
<form action="goodsServlet">
商品名:<input type="text" name="goodsName"/><br/>
商品类型:<input type="text" name="goodsType"/><br/>
<input type="hidden" value="findAll" name="status"/>
<input type="submit" value="查询"/>
</form>
</body>
</html>

2、show.jsp

<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"> <title>My JSP 'show.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> <script type="text/javascript">
function delGoods(no){
window.location.href="goodsServlet?no="+no+"&status=delete&goodsName=<%=request.getParameter("goodsName")%>&goodsType=<%=request.getParameter("goodsType")%>";
} function editGoods(no){
window.location.href="goodsServlet?no="+no+"&status=edit&goodsName=<%=request.getParameter("goodsName")%>&goodsType=<%=request.getParameter("goodsType")%>";
}
</script> </head> <body>
<table border="1" cellpadding="0" cellspacing="0" width="600">
<tr>
<td>商品编号</td>
<td>商品名</td>
<td>生产日期</td>
<td>地址</td>
<td>商品类型</td>
<td>操作</td>
</tr> <%
ResultSet rs = (ResultSet)request.getAttribute("rs");
while(rs.next()){
%>
<tr>
<td><%=rs.getString("no") %></td>
<td><%=rs.getString("name") %></td>
<td><%=rs.getString("time") %></td>
<td><%=rs.getString("address") %></td>
<td><%=rs.getString("type") %></td>
<td>
<input type="button" value="删除" onclick="delGoods('<%=rs.getString("no") %>')"/>
<input type="button" value="修改" onclick="editGoods('<%=rs.getString("no") %>')"/>
</td>
</tr>
<%
}
%>
</table>
</body>
</html>

3、showEdit.jsp

<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"> <title>My JSP 'showEdit.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> <script type="text/javascript"> function editGoodsOK(no){ document.getElementById("no").value=no;
document.getElementById("form").submit(); }
</script> </head> <body>
<form action="goodsServlet" id="form">
<table border="1" cellpadding="0" cellspacing="0" width="500">
<tr>
<td>商品编号</td>
<td>商品名</td>
<td>生产日期</td>
<td>地址</td>
<td>商品类型</td>
<td>操作</td>
</tr> <%
ResultSet rs = (ResultSet)request.getAttribute("rs");
while(rs.next()){
%>
<tr>
<td><input type="text" name="no" value="<%=rs.getString("no") %>" readonly="readonly"/></td>
<td><input type="text" name="name" value="<%=rs.getString("name") %>"/></td>
<td><input type="text" name="time" value="<%=rs.getString("time") %>"/></td>
<td><input type="text" name="address" value="<%=rs.getString("address") %>"/></td>
<td><input type="text" name="type" value="<%=rs.getString("type") %>"/></td>
<td>
<input type="button" value="确认修改" onclick="editGoodsOK('<%=rs.getString("no") %>')"/>
</td>
</tr>
<%
}
%>
<input type="hidden" name="no" id="no"/><br/>
<input type="hidden" name="status" value="editOK"/><br/>
<input type="hidden" name="goodsName" value="<%=request.getParameter("goodsName")%>"/><br/>
<input type="hidden" name="goodsType" value="<%=request.getParameter("goodsType")%>"/><br/>
</table>
</form>
</body>
</html>

4、DBHelper类

package com.cn.tools;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement; /**
* ��ȡ���ݿ���������Ӷ���?
* �ر����ݿ�����ĸ������?
* @author ������
*
*/
public class DBHelper {
private static final String className = "com.mysql.jdbc.Driver";
private static final String url = "jdbc:mysql://localhost:3306/jsp?characterEncoding=utf8&useSSL=true";
private static final String uname = "root";
private static final String upass = "**********"; /**
* ��ȡ���ݿ����Ӷ���ķ���?
*/
public static Connection getConn(){
Connection conn = null;
try{
Class.forName(className);
conn = DriverManager.getConnection(url,uname, upass);
} catch(Exception e){
e.printStackTrace();
} return conn;
} /**
* �ر����ݿ����Ӷ���
*/
public static void closeConn(Connection conn){
try{
if(conn!=null){
conn.close();
}
} catch(Exception e){
e.printStackTrace();
}
} /**
* �ر����ݿ��������?
*/
public static void closeStmt(Statement stmt){
try{
if(stmt!=null){
stmt.close();
}
} catch(Exception e){
e.printStackTrace();
}
} /**
* �ر����ݿ��������?
*/
public static void closePstmt(PreparedStatement pstmt){
try{
if(pstmt!=null){
pstmt.close();
}
} catch(Exception e){
e.printStackTrace();
}
} /**
* �ر����ݿ��������?
*/
public static void closeRs(ResultSet rs){
try{
if(rs!=null){
rs.close();
}
} catch(Exception e){
e.printStackTrace();
}
}
}

5、GoodsServlet

package com.cn.servlet;

import java.io.IOException;
import java.sql.Connection;
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; import com.cn.tools.DBHelper; public class GoodsServlet extends HttpServlet { private DBHelper db = new DBHelper();
private Connection conn = db.getConn(); public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { this.doPost(request, response);
} public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { String status = request.getParameter("status"); if(status.equals("findAll")){
this.findAll(request, response);
}else if(status.equals("delete")){
this.delete(request, response);
}else if(status.equals("edit")){
this.edit(request, response);
}else if(status.equals("editOK")){
this.editOK(request, response);
} } /**
* 查询商品
*/ public void findAll(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { String goodsName = request.getParameter("goodsName");
String goodsType = request.getParameter("goodsType"); ResultSet rs = null;
try {
Statement st = conn.createStatement(); String sql = "select * from goods t where 1=1 "; if(goodsName!=null||!goodsName.equals("")){
sql += " and t.name like '%"+goodsName+"%'";
}
if(goodsType!=null||!goodsType.equals("")){
sql += " and t.type like '%"+goodsType+"%'";
} rs = st.executeQuery(sql); } catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} request.setAttribute("rs", rs);
request.getRequestDispatcher("show.jsp").forward(request, response);
} /**
* 删除商品
*/
public void delete(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { String no = request.getParameter("no");
try {
Statement st = conn.createStatement();
st.execute("delete from goods where no='"+no+"'");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.findAll(request, response);
} /**
* 修改数据展示
*/
public void edit(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String no = request.getParameter("no");
ResultSet rs = null;
try {
Statement st = conn.createStatement();
rs = st.executeQuery("select * from goods where no='"+no+"'");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
request.setAttribute("rs", rs);
request.getRequestDispatcher("showEdit.jsp").forward(request, response);
} /**
* 确认修改
*/
public void editOK(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { String no = request.getParameter("no");
String name = request.getParameter("name");
String time = request.getParameter("time");
String address = request.getParameter("address");
String type = request.getParameter("type"); try {
Statement st = conn.createStatement();
st.execute("update goods set name='"+name+"',time='"+time+"',address='"+address+"',type='"+type+"' where no='"+no+"'");
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.findAll(request, response);
} }

jsp查询修改的更多相关文章

  1. python查询修改配置文件功能

    阅读目录 一.python查询功能代码 1.查询修改配置文件 global log 127.0.0.1 local2 daemon maxconn 256 log 127.0.0.1 local2 i ...

  2. mysql常用快速查询修改操作

    mysql常用快速查询修改操作 一.查找并修改非innodb引擎为innodb引擎 # 通用操作 mysql> select concat('alter table ',table_schema ...

  3. 第11章—使用对象关系映射持久化数据—SpringBoot+SpringData+Jpa进行查询修改数据库

    SpringBoot+SpringData+Jpa进行查询修改数据库 JPA由EJB 3.0软件专家组开发,作为JSR-220实现的一部分.但它又不限于EJB 3.0,你可以在Web应用.甚至桌面应用 ...

  4. Atitit. 注册表操作查询 修改 api与工具总结 java c# php js python 病毒木马的原理

    Atitit. 注册表操作查询 修改 api与工具总结 java c# php js python 病毒木马的原理 1. reg 工具 这个cli工具接口有,优先使用,jreg的要调用dll了,麻烦的 ...

  5. mysql 数据库 添加查询 修改 删除

    cmd 命令行模式操作数据库 添加查询 修改 删除 ( 表 字段 数据)   一 查看数据库.表.数据字段.数据 1 首先配置环境变量 进入mysql  或者通过一键集成工具 打开mysql命令行   ...

  6. jsp 实现修改和删除功能

    main.jsp   实现查询 在此界面快捷方式到修改界面 点击修改  会把数据传递到exit.jsp 修改   edit.jsp 前面数据: 数据库: /* Navicat Premium Data ...

  7. DataTable ajax分页+删除+查询+修改

    这个框架前前后后跳进了很多次坑,也算是本人比较愚笨吧做了很长的时间而积累的经验... dataTable用了很久,今天在此总结一下使用方法以及常用属性的解释. Html代码 : <div cla ...

  8. eclipse 工程默认编码修改 JSP编码修改

    1. Window->Preferences->General->Workspace->Text file encoding 将其改为UFT-8  新建的文件即为UTF-8编码 ...

  9. 查询修改linux 打开文件句柄数量

    查询系统支持最大可打开文件句柄数量: #vi /proc/sys/fs/file-max 查询当前连接用户最大可打开文件句柄数量: #ulimit -a 修改当前连接用户最大可打开文件句柄数量: #u ...

随机推荐

  1. 原生JS节点操作

    获取子节点 1. children 不是标准的dom属性,但是几乎被所有浏览器支持.获取子元素的元素节点(只包括元素节点) 注意:在IE中,children包含注释节点. 2. childNodes ...

  2. 牛客网Wannafly挑战赛25A 因子(数论 素因子分解)

    链接:https://www.nowcoder.com/acm/contest/197/A来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言5242 ...

  3. poj1182、hdu1829(并查集)

    题目链接:http://poj.org/problem?id=1182 食物链 Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: ...

  4. 普及一个Linux的小技能~Ctrl+Z切换到后台运行

    逆天Linux一直是自己摸索的,几年下来也小有心得,前不久PC也换成Ubuntu了,但毕竟不是专门搞运维的,有些知识还是有死角 这不,今天发现了个小技巧,来和大家分享一下: 比如运行一个交互式的程序: ...

  5. MyBatis深入浅出--入门

    mybatis概述 mybatis简介 MyBatis 是支持定制化 SQL.存储过程以及高级映射的优秀的持久层框架. MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集. ...

  6. Nginx简易编译安装

    1.下载Nginx: http://nginx.org/download/nginx-1.6.3.tar.gz 2.安装Pcre.Zlib.Openssl等相关组件: [root@track ngin ...

  7. 洛谷P4362 贪吃的九头龙

    大意就是把一棵树的点染成m种颜色,其中1号点的颜色必须染恰好k个节点. 总代价是所有两端点颜色相同的边的边权. 求最小代价. 解:可以分为m == 2和m > 2两个题. m > 2时有代 ...

  8. 关于react-native在MacBookPro环境下的安装

    都说欲善其事,必先利其器. 使用macbook写react-native 环境真的非常容易配置 先看效果 然后我们看安装需要的东西 brew install node brew install wat ...

  9. PHP中防止SQL注入

    防止SQL注入,我们需要注意以下几个要点: 1.永远不要信任用户的输入.对用户的输入进行校验,可以通过正则表达式,或限制长度:对单引号和 双"-"进行转换等. 2.永远不要使用动态 ...

  10. 2018 ACM 网络选拔赛 青岛赛区

    一些题目的代码被网站吞了…… Problem B. Red Black Tree http://acm.zju.edu.cn/onlinejudge/searchProblem.do?contestI ...