注意的一點(diǎn)是 我們?cè)趈stl中要引用屬性的時(shí)候 都要將屬性名字放到${}中 。 c:if test=${var} var=result scope=范圍/ 不帶body的 c:if test=${var} var=result scope=范圍 /body 在jsp中的使用如下: c:if test=${34} var=result 34 br /c:if c:out value=${re
注意的一點(diǎn)是 我們?cè)趈stl中要引用屬性的時(shí)候 都要將屬性名字放到"${}"中 。
在jsp中的使用如下:
3>4
2、
代碼如下 :
1>3
2==2
3>1
默認(rèn)輸出!
3、
也可以迭代數(shù)組,對(duì)于數(shù)組迭代的時(shí)候 ,比如 int型數(shù)組 的每個(gè)成員會(huì)被轉(zhuǎn)換成 Integer 類型 。
要注意的一點(diǎn)是 我們要迭代的對(duì)象必須是設(shè)置setAttribute設(shè)置的屬性 。
<%
String [] strs={"11","22","33","44","55","66","77","88","99","00"} ;
request.setAttribute("strs", strs) ;
Collection col=new ArrayList(10);
for(int i=0;i<10;i++)
col.add(i) ;
request.setAttribute("col", col) ;
Map
map.put(10, 22);
map.put(18, 62);
map.put(85,55);
request.setAttribute("map",map) ;
Collection c=map.entrySet() ;
for(Object a:c)
{
((Map.Entry)a).getKey();
}
%>
4、 利用
varStatus 依然有四個(gè)狀態(tài) index 當(dāng)前索引 count 當(dāng)前字串次數(shù) first 是否是第一個(gè)字符串 last 是否是最后一個(gè)字符串
<%
String info="a|b|c|d";
request.setAttribute("info",info);
%>
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com