首页 > 网站 > 建站经验 > 正文

js、p简单自定义标签的forEach遍历及转义字符示例

2019-11-02 15:04:35
字体:
来源:转载
供稿:网友

 这篇文章主要介绍了jsp简单自定义标签的forEach遍历及转义字符,需要的朋友可以参考下

接着昨天的,如果<forEach>中的items类型是map或者Collection类型的,怎样使用增强for循环; 首先还是创建一个标签处理器类,定义两个属性,String var; Object items; 因为items要迭代各种集合,所以要使用Object; 然后重写setter方法; 声明一个成员变量,集合类型的, 和上面两个属性是不相同的,这个是用在类里的, 在items的setter方法中,判断items的类型 然后继承他的doTag方法;  代码如下:public class ForEachTag2 extends SimpleTagSupport { private String var; private Object items; private Collection collection; public void setVar(String var){ this.var=var; } public void setItems(Object items){ this.items=items; if(items instanceof Map){ Map map = (Map) items; collection = map.entrySet(); } if(items instanceof Collection){//set list collection =(Collection) items; } if(items.getClass().isArray()){ collection = new ArrayList(); int len = Array.getLength(items); for(int i=0;i<len;i++){ Object obj= Array.get(items, i); collection.add(obj); } } } @Override public void doTag() throws JspException, IOException { Iterator iterator = collection.iterator(); while(iterator.hasNext()){ Object obj = iterator.next(); this.getJspContext().setAttribute(var, obj); this.getJspBody().invoke(null);&
雷人图片大全[www.62-6.com/1/leirentupian/]
nbsp;} } }  然后,写tld描述标签  代码如下:<tag> <name>forEach2</name> <tag-class>com.csdn.items.ForEachTag2</tag-class> <body-content>scriptless</body-content> <attribute> <name>var</name> <required>true</required> </attribute> <attribute> <name>items</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag>  最后在jsp文件中写items的各种类型 代码如下:<% Map map = new HashMap(); map.put("aa","aaaa"); map.put("bb","bbbb"); map.put("cc","cccc"); map.put("dd","dddd"); map.put("ee","eeee"); request.setAttribute("map",map); %> <c:forEach2 var="str" items="${map}"> ${str.key }-----${str.value }<br /> </c:forEach2> <% String[] strs ={"aa","bb","cc"} ; request.setAttribute("strs",strs); %> <c:forEach2 var="str" items="${strs}"> ${str}<br> </c:forEach2>  接下里是一个转义的自定义标签: 步骤都一样: 代码如下:public void doTag() throws JspException, IOException { JspFragment jf = this.getJspBody();//获取jsp文件中的内容 StringWriter sw = new StringWriter();//获取一个流对象 jf.invoke(sw);//吧内容放到流对象中 String s =sw.toString();//把jsp内容转成字符串 s= filter(s);//获取进行转义之后的字符 this.getJspContext().getOut().write(s);//写入
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表