edit_0002ejsp_jsp.java
资源名称:JSP02.rar [点击查看]
上传用户:top0756
上传日期:2022-08-11
资源大小:6501k
文件大小:5k
源码类别:
Jsp/Servlet
开发平台:
VBScript
- import java.sql.*;
- import java.util.*;
- import proj112.*;
- import javax.servlet.*;
- import javax.servlet.http.*;
- import javax.servlet.jsp.*;
- import org.apache.jasper.runtime.*;
- public class edit_0002ejsp_jsp extends HttpJspBase {
- // begin [file="/edit.jsp";from=(5,0);to=(5,57)]
- // end
- static {
- }
- public edit_0002ejsp_jsp( ) {
- }
- private static boolean _jspx_inited = false;
- public final void _jspx_init() throws org.apache.jasper.runtime.JspException {
- }
- public void _jspService(HttpServletRequest request, HttpServletResponse response)
- throws java.io.IOException, ServletException {
- JspFactory _jspxFactory = null;
- PageContext pageContext = null;
- HttpSession session = null;
- ServletContext application = null;
- ServletConfig config = null;
- JspWriter out = null;
- Object page = this;
- String _value = null;
- try {
- if (_jspx_inited == false) {
- synchronized (this) {
- if (_jspx_inited == false) {
- _jspx_init();
- _jspx_inited = true;
- }
- }
- }
- _jspxFactory = JspFactory.getDefaultFactory();
- response.setContentType("text/html; charset=GBK");
- pageContext = _jspxFactory.getPageContext(this, request, response,
- "", true, 8192, true);
- application = pageContext.getServletContext();
- config = pageContext.getServletConfig();
- session = pageContext.getSession();
- out = pageContext.getOut();
- // HTML // begin [file="/edit.jsp";from=(0,48);to=(1,0)]
- out.write("rn");
- // end
- // HTML // begin [file="/edit.jsp";from=(1,31);to=(2,0)]
- out.write("rn");
- // end
- // HTML // begin [file="/edit.jsp";from=(2,27);to=(3,0)]
- out.write("rn");
- // end
- // HTML // begin [file="/edit.jsp";from=(3,32);to=(4,0)]
- out.write("rn");
- // end
- // HTML // begin [file="/edit.jsp";from=(4,30);to=(5,0)]
- out.write("rn");
- // end
- // begin [file="/edit.jsp";from=(5,0);to=(5,57)]
- proj112.dbconn a = null;
- boolean _jspx_speciala = false;
- synchronized (pageContext) {
- a= (proj112.dbconn)
- pageContext.getAttribute("a",PageContext.PAGE_SCOPE);
- if ( a == null ) {
- _jspx_speciala = true;
- try {
- a = (proj112.dbconn) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "proj112.dbconn");
- } catch (ClassNotFoundException exc) {
- throw new InstantiationException(exc.getMessage());
- } catch (Exception exc) {
- throw new ServletException (" Cannot create bean of class "+"proj112.dbconn", exc);
- }
- pageContext.setAttribute("a", a, PageContext.PAGE_SCOPE);
- }
- }
- if(_jspx_speciala == true) {
- // end
- // begin [file="/edit.jsp";from=(5,0);to=(5,57)]
- }
- // end
- // HTML // begin [file="/edit.jsp";from=(5,57);to=(9,2)]
- out.write("rn<html>rn<body>rnrn ");
- // end
- // begin [file="/edit.jsp";from=(9,4);to=(9,45)]
- request.setCharacterEncoding("gb2312");
- // end
- // HTML // begin [file="/edit.jsp";from=(9,47);to=(11,2)]
- out.write("rnrn ");
- // end
- // begin [file="/edit.jsp";from=(11,4);to=(26,0)]
- String id2=request.getParameter("stu_name");
- String stu_name = request.getParameter("stu_name");
- String stu_id = request.getParameter("stu_id");
- String sex = request.getParameter("sex");
- String dept = request.getParameter("dept");
- String mz = request.getParameter("mz");
- String zzmm = request.getParameter("zzmm");
- //int age2 = Integer.parseInt()
- String sql = "update student set stu_name='"+stu_name+"', stu_id='"+stu_id+"', sex='"+sex+"',dept='"+dept+"',mz='"+mz+"', zzmm='"+zzmm+"' where stu_name='"+id2+"'";
- //rs2.close();
- a.executeUpdate(sql);
- response.sendRedirect("std.jsp");
- // end
- // HTML // begin [file="/edit.jsp";from=(26,2);to=(30,0)]
- out.write("rnrn</body>rn</html>rn");
- // end
- } catch (Throwable t) {
- if (out != null && out.getBufferSize() != 0)
- out.clearBuffer();
- if (pageContext != null) pageContext.handlePageException(t);
- } finally {
- if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
- }
- }
- }