presentpersonalhealthcareinfo_0002ejsp_jsp.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 105 行
JAVA
105 行
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;
import java.sql.*;
import humanresource.EmployeeInfoBean;
public class PresentPersonalHealthCareInfo_0002ejsp_jsp extends HttpJspBase {
int employeeID;
private static java.util.Vector _jspx_includes;
public java.util.List getIncludes() {
return _jspx_includes;
}
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {
JspFactory _jspxFactory = null;
javax.servlet.jsp.PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
try {
_jspxFactory = JspFactory.getDefaultFactory();
response.setContentType("text/html; charset=GBK");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write("\r\n");
out.write("<HTML>\r\n");
out.write("<HEAD>");
out.write("<TITLE>Your Health Care Information");
out.write("</TITLE>");
out.write("</HEAD>\r\n");
out.write("<BODY>\r\n\r\n");
out.write("\r\n");
out.write("\r\n");
out.write("\r\n\r\n");
out.write("<H1 ALIGN=\"center\">Your Health Care Plans");
out.write("</H1>\r\n\r\n");
out.write("<TABLE WIDTH=\"100%\" BORDER=\"1\">\r\n");
EmployeeInfoBean beanObj1=new EmployeeInfoBean();
employeeID = Integer.valueOf(request.getParameter("id")).intValue();
// employeeID = request.getParameter("id");
ResultSet rs=beanObj1.queryPenPolicy(employeeID);
rs.next();
out.write("\r\n ");
out.write("<TR>");
out.write("<TD ALIGN=\"right\" WIDTH=\"50%\">Employee Name:");
out.write("</TD>");
out.write("<TD WIDTH=\"50%\">");
out.print( rs.getString("NAME") );
out.write("</TD>");
out.write("</TR>\r\n ");
out.write("<TR>");
out.write("<TD ALIGN=\"right\" WIDTH=\"50%\">Health Care Plan:");
out.write("</TD>");
out.write("<TD WIDTH=\"50%\">");
out.print( rs.getString("HEALTHCAREPLAN") );
out.write("</TD>");
out.write("</TR>\r\n ");
out.write("<TR>");
out.write("<TD ALIGN=\"right\" WIDTH=\"50%\">Dental Plan:");
out.write("</TD>");
out.write("<TD WIDTH=\"50%\">");
out.print( rs.getString("DENTALPLAN") );
out.write("</TD>");
out.write("</TR>\r\n ");
out.write("<TR>");
out.write("<TD ALIGN=\"right\" WIDTH=\"50%\">Vision Plan:");
out.write("</TD>");
out.write("<TD WIDTH=\"50%\">");
out.print( rs.getString("VISIONPLAN") );
out.write("</TD>");
out.write("</TR>\r\n\r\n");
out.write("</TABLE>\r\n\r\n");
out.write("<BR>\r\n\r\n");
out.write("</BODY>\r\n");
out.write("</HTML>");
} catch (Throwable t) {
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (pageContext != null) pageContext.handlePageException(t);
} finally {
if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?