本文整理汇总了Java中javax.servlet.jsp.tagext.PageData.getInputStream方法的典型用法代码示例。如果您正苦于以下问题:Java PageData.getInputStream方法的具体用法?Java PageData.getInputStream怎么用?Java PageData.getInputStream使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.servlet.jsp.tagext.PageData
的用法示例。
在下文中一共展示了PageData.getInputStream方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validate
import javax.servlet.jsp.tagext.PageData; //导入方法依赖的package包/类
/**
* Validate a JSP page. This will get invoked once per directive in the
* JSP page. This method will return <code>null</code> if the page is
* valid; otherwise the method should return an array of
* <code>ValidationMessage</code> objects. An array of length zero is
* also interpreted as no errors.
*
* @param prefix The value of the prefix argument in this directive
* @param uri The value of the URI argument in this directive
* @param page The page data for this page
*/
public ValidationMessage[] validate(String prefix, String uri,
PageData page) {
System.out.println("---------- Prefix=" + prefix + " URI=" + uri +
"----------");
InputStream is = page.getInputStream();
while (true) {
try {
int ch = is.read();
if (ch < 0)
break;
System.out.print((char) ch);
} catch (IOException e) {
break;
}
}
System.out.println();
System.out.println("-----------------------------------------------");
return (null);
}
示例2: validate
import javax.servlet.jsp.tagext.PageData; //导入方法依赖的package包/类
/**
* Validate a JSP page. This will get invoked once per directive in the
* JSP page. This method will return <code>null</code> if the page is
* valid; otherwise the method should return an array of
* <code>ValidationMessage</code> objects. An array of length zero is
* also interpreted as no errors.
*
* @param prefix The value of the prefix argument in this directive
* @param uri The value of the URI argument in this directive
* @param page The page data for this page
*/
@Override
public ValidationMessage[] validate(String prefix, String uri,
PageData page) {
System.out.println("---------- Prefix=" + prefix + " URI=" + uri +
"----------");
InputStream is = page.getInputStream();
while (true) {
try {
int ch = is.read();
if (ch < 0)
break;
System.out.print((char) ch);
} catch (IOException e) {
break;
}
}
System.out.println();
System.out.println("-----------------------------------------------");
return (null);
}