javax.servlet.jsp.tagext
类 PageData

java.lang.Object
  继承者 javax.servlet.jsp.tagext.PageData

public abstract class PageData
extends Object

Translation-time information on a JSP page. The information corresponds to the XML view of the JSP page.

Objects of this type are generated by the JSP translator, e.g. when being pased to a TagLibraryValidator instance.


构造方法摘要
PageData()
          Sole constructor.
 
方法摘要
abstract  InputStream getInputStream()
          Returns an input stream on the XML view of a JSP page.
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

PageData

public PageData()
Sole constructor. (For invocation by subclass constructors, typically implicit.)

方法详细信息

getInputStream

public abstract InputStream getInputStream()
Returns an input stream on the XML view of a JSP page. The stream is encoded in UTF-8. Recall tht the XML view of a JSP page has the include directives expanded.

返回:
An input stream on the document.


Copyright © 2013. All Rights Reserved.