⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 __showsearchresult.java

📁 100多M的J2EE培训内容
💻 JAVA
字号:
/* compiled from JSP: /ShowSearchResult.jsp
*
* This code was automatically generated at 11:03:21 on 2003-6-18
* by weblogic.servlet.jsp.Jsp2Java -- do not edit.
*/

package jsp_servlet;

import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;

// User imports
import java.util.Vector; //[ /ShowSearchResult.jsp; Line: 2]import slsbsample.ScheduleVO; //[ /ShowSearchResult.jsp; Line: 2]

// built-in init parameters:
// boolean             _verbose -- wants debugging

// Well-known variables:
// JspWriter out                  -- to write to the browser
// HttpServletRequest  request    -- the request object.
// HttpServletResponse response   -- the response object.
// PageContext pageContext        -- the page context for this JSP
// HttpSession session            -- the session object for the client (if any)
// ServletContext application     -- The servlet (application) context
// ServletConfig config           -- The ServletConfig for this JSP
// Object page                    -- the instance of this page's implementation class (i.e., 'this')

/**
* This code was automatically generated at 11:03:21 on 2003-6-18
* by weblogic.servlet.jsp.Jsp2Java -- do not edit.
*
* Copyright (c) 2003 by BEA Systems, Inc. All Rights Reserved.
*/
public final class __showsearchresult
extends
weblogic.servlet.jsp.JspBase
implements weblogic.servlet.jsp.StaleIndicator
{
    
    //[ /ShowSearchResult.jsp; Line: 2]    // Servlet info directive. //[ /ShowSearchResult.jsp; Line: 2]    public String getServletInfo() { //[ /ShowSearchResult.jsp; Line: 2]        return "JavaCamp.com - ShowSearchResult.jsp "; //[ /ShowSearchResult.jsp; Line: 2]    } //[ /ShowSearchResult.jsp; Line: 2]    //[ /ShowSearchResult.jsp; Line: 2]    // StaleIndicator interface    public boolean _isStale() {        weblogic.servlet.jsp.StaleChecker sci =(weblogic.servlet.jsp.StaleChecker)(getServletConfig().getServletContext());        java.io.File f = null;        long lastModWhenBuilt = 0L;        if (sci.isResourceStale("/ShowSearchResult.jsp", 1055905235902L, "7.0.2.0")) return true;        return false;    }        public static boolean _staticIsStale(weblogic.servlet.jsp.StaleChecker sci) {        java.io.File f = null;        long lastModWhenBuilt = 0L;        if (sci.isResourceStale("/ShowSearchResult.jsp", 1055905235902L, "7.0.2.0")) return true;        return false;    }            
    
    public void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException 
    {  
        
        // declare and set well-known variables:
        javax.servlet.ServletConfig config = getServletConfig();
        javax.servlet.ServletContext application = config.getServletContext();
        javax.servlet.jsp.tagext.Tag _activeTag = null;
        // variables for Tag extension protocol        
        Object page = this;
        javax.servlet.jsp.JspWriter out;
        javax.servlet.jsp.PageContext pageContext =        javax.servlet.jsp.JspFactory.getDefaultFactory().getPageContext(this, request, response, null, true, 8192, true);        
        response.setHeader("Content-Type", "text/html; charset=EUC_CN");        out = pageContext.getOut();        JspWriter _originalOut = out;        
        javax.servlet.http.HttpSession session = request.getSession(true);        
        
        
        try { // error page try block                        response.setContentType("text/html; charset=EUC_CN");                        out.print("\r\n");            out.print("\r\n\r\n<html>\r\n<title> Chapter 6 Search Schedule Sample Application</title>\r\n<body>\r\n<center>\r\n<h2> Chapter 6 Search Schedule Sample Application</h2>\r\n<table border=\"5\">\r\n<caption><font size=\"4\"> Search Result of Java Class Schedules</font></caption>\r\n<tr>\r\n<th>Schedule ID</th>\r\n<th>Course Title</th>\r\n<th>Location</th>\r\n<th>Start Date</th>\r\n<th>End Date</th>\r\n<th>Cost(US)</th>\r\n<th>Status</th>\r\n</tr>\r\n\r\n");            if (request.getAttribute("vec") != null) //[ /ShowSearchResult.jsp; Line: 21]            { //[ /ShowSearchResult.jsp; Line: 22]                //[ /ShowSearchResult.jsp; Line: 23]                Vector vList = (java.util.Vector) request.getAttribute("vec"); //[ /ShowSearchResult.jsp; Line: 24]                try //[ /ShowSearchResult.jsp; Line: 25]                { //[ /ShowSearchResult.jsp; Line: 26]                    for( int i=0; i< vList.size(); i++ ) //[ /ShowSearchResult.jsp; Line: 27]                    { //[ /ShowSearchResult.jsp; Line: 28]                        ScheduleVO schedule  = (ScheduleVO) vList.elementAt(i); //[ /ShowSearchResult.jsp; Line: 29]                        out.print("\r\n<tr>\r\n<td>");                        out.print(String.valueOf(schedule.getScheduleID()));  //[ /ShowSearchResult.jsp; Line: 32]                        out.print("</td>\r\n<td>");                        out.print(String.valueOf(schedule.getCourseTitle()));  //[ /ShowSearchResult.jsp; Line: 33]                        out.print("</td>\r\n<td>");                        out.print(String.valueOf(schedule.getLocation()));  //[ /ShowSearchResult.jsp; Line: 34]                        out.print("</td>\r\n<td>");                        out.print(String.valueOf(schedule.getStartDate()));  //[ /ShowSearchResult.jsp; Line: 35]                        out.print("</td>\r\n<td>");                        out.print(String.valueOf(schedule.getEndDate()));  //[ /ShowSearchResult.jsp; Line: 36]                        out.print("</td>\r\n<td>$");                        out.print(String.valueOf(schedule.getCost()));  //[ /ShowSearchResult.jsp; Line: 37]                        out.print("</td>\r\n<td>");                        out.print(String.valueOf(schedule.getStatus()));  //[ /ShowSearchResult.jsp; Line: 38]                        out.print("</td>\r\n</tr>\r\n");                        //[ /ShowSearchResult.jsp; Line: 40]                    } //[ /ShowSearchResult.jsp; Line: 41]                    //[ /ShowSearchResult.jsp; Line: 42]                } catch(Exception e) { //[ /ShowSearchResult.jsp; Line: 43]                    System.out.println(" ******* exception "+e); //[ /ShowSearchResult.jsp; Line: 44]                } //[ /ShowSearchResult.jsp; Line: 45]            } //[ /ShowSearchResult.jsp; Line: 46]            out.print("\r\n\r\n</table>\r\n<p>\r\n<a href=SearchCourse.htm>Search for Java Training classes</a>\r\n</center>\r\n\r\n</body>\r\n</html>\r\n");        } catch (Throwable __ee) {            while (out != null && out != _originalOut) out = pageContext.popBody();            ((weblogic.servlet.jsp.PageContextImpl)pageContext).handlePageException((Throwable)__ee);        }                
        //before final close brace...
    }
    
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -