欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-13 18:44:04
接着昨天的,如果中的items类型是map或者collection类型的,怎样使用增强for循环; 首先还是创建一个标签处理器类,定义两个属性...
接着昨天的,如果<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);
}
}
}

然后,写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);//写入浏览器
}
public string filter(string message) {//对字符串进行转义的方法
if (message == null)
return (null);
char content[] = new char[message.length()];
message.getchars(0, message.length(), content, 0);
stringbuffer result = new stringbuffer(content.length + 50);
for (int i = 0; i < content.length; i++) {
switch (content[i]) {
case '<':
result.append("<");
break;
case '>':
result.append(">");
break;
case '&':
result.append("&");
break;
case '"':
result.append(""");
break;
default:
result.append(content[i]);
}
}
return (result.tostring());
}
}

接下来就一样了,
复制代码 代码如下:

<tag>
<name>htmlfilter</name>
<tag-class>com.csdn.items.htmlfilter</tag-class>
<body-content>scriptless</body-content>
</tag>
<c:htmlfilter>
<a href=""> aaa</a>
</c:htmlfilter>

jsp标签文件的内容原样输出;