首页 > 代码库 > jsp自定义标签tag EL函数
jsp自定义标签tag EL函数
原文:jsp自定义标签tagEL函数
源代码下载地址:http://www.zuidaima.com/share/1550463459052544.htm
简单易懂的自定义EL函数
tag.java</pre><p> </p><pre name="code" class="java">package com.zuidaima.tag; import java.io.IOException; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.servlet.jsp.PageContext; import javax.servlet.jsp.tagext.SimpleTagSupport; /** *@author www.zuidaima.com **/ public class MsgTag extends SimpleTagSupport{ private String info; private int qty; public MsgTag(){ System.out.println("MsgTag's constructor..."); } public void setInfo(String info) { System.out.println("setInfo..." + info); this.info = info; } public void setQty(int qty) { System.out.println("setQty..." + qty); this.qty = qty; } @Override public void doTag() throws JspException, IOException { System.out.println("doTag..."); //通过SimpleTagSupport提供的getJspContext方法 //获得PageContext。PageContext提供了获得其它 //几个隐含对象的方法。 PageContext ctx = (PageContext)getJspContext(); JspWriter out = ctx.getOut(); for(int i=0;i < qty;i++){ out.println(info + "<br/>"); } } }
jsp自定义标签tag EL函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。