jsp简单自定义标签的forEach遍历及转义字符(2)
来源:未知 责任编辑:责任编辑 发表时间:2015-09-17 09:43 点击:次
</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);
相关新闻>>
- 发表评论
-
- 最新评论 更多>>