博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
code review
阅读量:6930 次
发布时间:2019-06-27

本文共 3029 字,大约阅读时间需要 10 分钟。

 package service;
import imp.UserDaoImp;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import dao.UserDao;
import bean.User;
public class user_update extends HttpServlet {
/**
 * Constructor of the object.
 */
public user_update() {
super();
}
/**
 * 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("textml");
PrintWriter out = response.getWriter();
out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
out.println("  <BODY>");
out.print("    This is ");
out.print(this.getClass());
out.println(", using the GET method");
out.println("  </BODY>");
out.println("</HTML>");
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("textml");
request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");
String uid = request.getParameter("uid");
String uname = request.getParameter("uname");
String uclass = request.getParameter("uclass");
String upassword = request.getParameter("upassword");
User user = new User();
user.setuName(uname);
user.setuClass(uclass);
user.setuPassword(upassword);
UserDao userdao = new UserDaoImp();
int result = userdao.updateInfo(uid, user);
if (result > 0) {
PrintWriter out = response.getWriter();
out.print("<script type='text/javascript'>"
+ "alert('修改成功');window.location.href='../user_home.jsp';</script>");
out.flush();
out.close();
} else {
PrintWriter out = response.getWriter();
out.print("<script type='text/javascript'>"
+ "alert('修改失败');window.location.href='../user_update.jsp';</script>");
out.flush();
out.close();
}
}
/**
 * Initialization of the servlet. <br>
 *
 * @throws ServletException if an error occurs
 */
public void init() throws ServletException {
// Put your code here
}
 
 
 
1.这段代码有点长,并且有没有注释;
 

转载于:https://www.cnblogs.com/Ricardo-M-Lu/p/6612645.html

你可能感兴趣的文章
android设备适配
查看>>
算法题:整形数组找a和b使得a+b=n
查看>>
mysql优化建议大全
查看>>
C#.Net Mvc运营监控,计算方法/接口/action/页面执行时间
查看>>
存储过程分页方案
查看>>
扫盲 Linux:如何选择发行版
查看>>
色版黑莓Bold9900已经登岸香港市场
查看>>
报表服务入门(实验3)配置虚拟目录
查看>>
联合类型(union type )
查看>>
一图胜千言 -- SQL Server 监控
查看>>
Exchange-Exchange Server内部版本号和发行日期
查看>>
大数据实践总结分享
查看>>
VMware Workstation and Hyper-V are not compatible. Remove the ...
查看>>
mysql慢查询日志学习
查看>>
ADT学苑
查看>>
Android Studio 学习笔记 - 开发环境的架设
查看>>
Powershell从office365上 删除日历记录
查看>>
CentOS 6.4 Linux vsftpd shell管理系统脚本完整版
查看>>
Nginx之模块处理流程
查看>>
Android应用程序请求SurfaceFlinger服务渲染Surface的过程分析
查看>>