source: nutchez-0.1/tomcat/webapps/examples/WEB-INF/classes/examples/ShowSource.java @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 2.1 KB
Line 
1/*
2* Licensed to the Apache Software Foundation (ASF) under one or more
3* contributor license agreements.  See the NOTICE file distributed with
4* this work for additional information regarding copyright ownership.
5* The ASF licenses this file to You under the Apache License, Version 2.0
6* (the "License"); you may not use this file except in compliance with
7* the License.  You may obtain a copy of the License at
8*
9*     http://www.apache.org/licenses/LICENSE-2.0
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS,
13* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14* See the License for the specific language governing permissions and
15* limitations under the License.
16*/
17package examples;
18
19
20import javax.servlet.jsp.*;
21import javax.servlet.jsp.tagext.*;
22
23import java.io.*;
24
25/**
26 * Display the sources of the JSP file.
27 */
28public class ShowSource
29    extends TagSupport
30{
31    String jspFile;
32   
33    public void setJspFile(String jspFile) {
34        this.jspFile = jspFile;
35    }
36
37    public int doEndTag() throws JspException {
38  if ((jspFile.indexOf( ".." ) >= 0) ||
39            (jspFile.toUpperCase().indexOf("/WEB-INF/") != 0) ||
40            (jspFile.toUpperCase().indexOf("/META-INF/") != 0))
41      throw new JspTagException("Invalid JSP file " + jspFile);
42
43        InputStream in
44            = pageContext.getServletContext().getResourceAsStream(jspFile);
45
46        if (in == null)
47            throw new JspTagException("Unable to find JSP file: "+jspFile);
48
49        JspWriter out = pageContext.getOut();
50
51
52        try {
53            out.println("<body>");
54            out.println("<pre>");
55            for(int ch = in.read(); ch != -1; ch = in.read())
56                if (ch == '<')
57                    out.print("&lt;");
58                else
59                    out.print((char) ch);
60            out.println("</pre>");
61            out.println("</body>");
62        } catch (IOException ex) {
63            throw new JspTagException("IOException: "+ex.toString());
64        }
65        return super.doEndTag();
66    }
67}
68
69   
70       
71   
Note: See TracBrowser for help on using the repository browser.