您的位置:首页 > 其它

简单标签的使用:

2011-11-08 20:17 155 查看
使用自定义标签控制页面内容(标签体)是否输出

public void doTag() throws JspException, IOException {

//JspFragment jf = this.getJspBody();

//jf.invoke(null);

//等价于jf.invoke(this.getJspContext().getOut());

}

简单标签控制标签后的jsp内容是否执行

public void doTag() throws JspException, IOException {

JspFragment jf = this.getJspBody();

jf.invoke(null);

throw new SkipPageException();

}

自定义标签实现内容(标签体)循环输出

public void doTag() throws JspException, IOException {

JspFragment jf = this.getJspBody();

for(int i=0; i<5; i++){

jf.invoke(null);

}

}

自定义标签修改内容(标签体)——大小写转换

public void doTag() throws JspException, IOException {

JspFragment jf = this.getJspBody();

//为了获取JspFragment中的内容,将其输入一个带缓冲的Writer中,//在获取字符串

StringWriter sw = new StringWriter();

jf.invoke(sw);

String content = sw.toString().toUpperCase();

JspWriter out = this.getJspContext().getOut();

out.write(content);

}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: