jsp2_0002ejsp_jsp.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. import javax.servlet.*;
  2. import javax.servlet.http.*;
  3. import javax.servlet.jsp.*;
  4. import org.apache.jasper.runtime.*;
  5. public class jsp2_0002ejsp_jsp extends HttpJspBase {
  6.   private static java.util.Vector _jspx_includes;
  7.   private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_tb_table_var_items_header;
  8.   public jsp2_0002ejsp_jsp() {
  9.     _jspx_tagPool_tb_table_var_items_header = new org.apache.jasper.runtime.TagHandlerPool();
  10.   }
  11.   public java.util.List getIncludes() {
  12.     return _jspx_includes;
  13.   }
  14.   public void _jspDestroy() {
  15.     _jspx_tagPool_tb_table_var_items_header.release();
  16.   }
  17.   public void _jspService(HttpServletRequest request, HttpServletResponse response)
  18.         throws java.io.IOException, ServletException {
  19.     JspFactory _jspxFactory = null;
  20.     javax.servlet.jsp.PageContext pageContext = null;
  21.     HttpSession session = null;
  22.     ServletContext application = null;
  23.     ServletConfig config = null;
  24.     JspWriter out = null;
  25.     Object page = this;
  26.     JspWriter _jspx_out = null;
  27.     try {
  28.       _jspxFactory = JspFactory.getDefaultFactory();
  29.       response.setContentType("text/html; charset=GBK");
  30.       pageContext = _jspxFactory.getPageContext(this, request, response,
  31.        null, true, 8192, true);
  32.       application = pageContext.getServletContext();
  33.       config = pageContext.getServletConfig();
  34.       session = pageContext.getSession();
  35.       out = pageContext.getOut();
  36.       _jspx_out = out;
  37.       out.write("rn");
  38.       out.write("rn");
  39.       out.write("<html>rn");
  40.       out.write("<head>rn");
  41.       out.write("<title>rnjsp2rn");
  42.       out.write("</title>rn");
  43.       out.write("</head>rn");
  44.       out.write("<body bgcolor="#ffffff">rn");
  45. //硬编码
  46. //1.设置表头
  47. String[] header=new String[]{"name","age","code","favoriate"};
  48. request.setAttribute("colName",header);
  49. //2.设置表内容数据
  50. java.util.Vector v=new java.util.Vector();
  51. v.add("李波");
  52. v.add("a");
  53. v.add("b");
  54. v.add("e");
  55. v.add("徐蕾");
  56. v.add("c");
  57. v.add("d");
  58. v.add("f");
  59. request.setAttribute("myData",v);
  60.       out.write("rn");
  61.       out.write("<h1>rnJBuilder Generated JSPrn");
  62.       out.write("</h1>rn");
  63. // 3.使用tag
  64.       out.write("rn");
  65.       if (_jspx_meth_tb_table_0(pageContext))
  66.         return;
  67.       out.write("rn");
  68.       out.write("</body>rn");
  69.       out.write("</html>rn");
  70.     } catch (Throwable t) {
  71.       out = _jspx_out;
  72.       if (out != null && out.getBufferSize() != 0)
  73.         out.clearBuffer();
  74.       if (pageContext != null) pageContext.handlePageException(t);
  75.     } finally {
  76.       if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
  77.     }
  78.   }
  79.   private boolean _jspx_meth_tb_table_0(javax.servlet.jsp.PageContext pageContext)
  80.           throws Throwable {
  81.     JspWriter out = pageContext.getOut();
  82.     /* ----  tb:table ---- */
  83.     tag.table _jspx_th_tb_table_0 = (tag.table) _jspx_tagPool_tb_table_var_items_header.get(tag.table.class);
  84.     _jspx_th_tb_table_0.setPageContext(pageContext);
  85.     _jspx_th_tb_table_0.setParent(null);
  86.     _jspx_th_tb_table_0.setItems("myData");
  87.     _jspx_th_tb_table_0.setHeader("colName");
  88.     _jspx_th_tb_table_0.setVar("current");
  89.     int _jspx_eval_tb_table_0 = _jspx_th_tb_table_0.doStartTag();
  90.     if (_jspx_eval_tb_table_0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
  91.       do {
  92.         out.write("rn");
  93.         int evalDoAfterBody = _jspx_th_tb_table_0.doAfterBody();
  94.         if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
  95.           break;
  96.       } while (true);
  97.     }
  98.     if (_jspx_th_tb_table_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
  99.       return true;
  100.     _jspx_tagPool_tb_table_var_items_header.reuse(_jspx_th_tb_table_0);
  101.     return false;
  102.   }
  103. }