接著昨天的,如果forEach>中的items類型是map或者Collection類型的,怎樣使用增強(qiáng)for循環(huán);
首先還是創(chuàng)建一個標(biāo)簽處理器類,定義兩個屬性,String var; Object items;
因為items要迭代各種集合,所以要使用Object;
然后重寫setter方法;
聲明一個成員變量,集合類型的, 和上面兩個屬性是不相同的,這個是用在類里的,
在items的setter方法中,判斷items的類型
然后繼承他的doTag方法;
復(fù)制代碼 代碼如下:
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;ilen;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描述標(biāo)簽
復(fù)制代碼 代碼如下:
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的各種類型
復(fù)制代碼 代碼如下:
%
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>
接下里是一個轉(zhuǎn)義的自定義標(biāo)簽:
步驟都一樣:
復(fù)制代碼 代碼如下:
public void doTag() throws JspException, IOException {
JspFragment jf = this.getJspBody();//獲取jsp文件中的內(nèi)容
StringWriter sw = new StringWriter();//獲取一個流對象
jf.invoke(sw);//吧內(nèi)容放到流對象中
String s =sw.toString();//把jsp內(nèi)容轉(zhuǎn)成字符串
s= filter(s);//獲取進(jìn)行轉(zhuǎn)義之后的字符
this.getJspContext().getOut().write(s);//寫入瀏覽器
}
public String filter(String message) {//對字符串進(jìn)行轉(zhuǎn)義的方法
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());
}
}
接下來就一樣了,
復(fù)制代碼 代碼如下:
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標(biāo)簽文件的內(nèi)容原樣輸出;
您可能感興趣的文章:- 詳解JavaScript中的forEach()方法的使用
- js中的for如何實現(xiàn)foreach中的遍歷
- JavaScript forEach()遍歷函數(shù)使用及介紹
- javascript forEach通用循環(huán)遍歷方法
- Javascript數(shù)組循環(huán)遍歷之forEach詳解
- javascript forEach函數(shù)實現(xiàn)代碼
- 關(guān)于JavaScript中forEach和each用法淺析
- jQuery each和js forEach用法比較
- JavaScript樹的深度優(yōu)先遍歷和廣度優(yōu)先遍歷算法示例
- JavaScript實現(xiàn)多叉樹的遞歸遍歷和非遞歸遍歷算法操作示例
- JavaScript實現(xiàn)樹的遍歷算法示例【廣度優(yōu)先與深度優(yōu)先】
- JS實現(xiàn)手寫 forEach算法示例