1.01.2

使用JSTL开发jsp自定义标签开发---迭代标签

系统 1532 0

标签的TLD

 

<? xml version="1.0" encoding="ISO-8859-1"  ?>
<! DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"
>
< taglib >
  
< tlib-version > 1.0 </ tlib-version >
  
< jsp-version > 1.2 </ jsp-version >
  
< short-name > book </ short-name >
  
< uri > http://jstlbook.com/tld/weekday.tld </ uri >
< tag >
  
< name > if </ name >
  
< tag-class > ttt.ConditionTest </ tag-class >
  
< attribute >
    
< name > items </ name >
   
</ attribute >
   
< attribute >
     
< name > var </ name >
   
</ attribute >
   
< attribute >
     
< name > varStatus </ name >
    
</ attribute >
</ tag >
</ taglib >

 标签类:

几个地方需要说明

items属性是jsp页面传来的需要迭代的collection

hasNext方法返回collection是否迭代结束

next 进行迭代

prepare 可以看成是初始化

setVarStatus方法可以监视循环状态,根c:forEach的类似

package  ttt;
import  javax.servlet.jsp.JspTagException;
import  javax.servlet.jsp.jstl.core.LoopTagSupport;


public   class  LoopTagTest  extends  LoopTagSupport  ... {
    
private  String items;
    
private   int  i = 0 ;
    
public  String getItems()  ... {
        
return  items;
    }


    
public   void  setItems(String items)  ... {
        
this .items  =  items;
    }


    
protected   boolean  hasNext()  throws  JspTagException  ... {
        
if (i == 0 )
        
... {
            
return   true ;
        }
else ... {
            
return   false ;
        }

    }


    
protected  Object next()  throws  JspTagException  ... {
        i
= 1 ;
        
return   this .getItems();
    }


    
protected   void  prepare()  throws  JspTagException  ... {
        
//  TODO Auto-generated method stub
        
    }


    
public   void  setVarStatus(String arg0)  ... {
        
super .setVarStatus(arg0);
    }


    
   
}

 

JSP

 


<% ... @ taglib prefix = " cc "  uri = " http://jstlbook.com/tld/weekday.tld "   %>
<% ... @ taglib prefix = " c "  uri = " http://java.sun.com/jsp/jstl/core "   %>

< html >
< head >

< title > Currency Formatting </ title >
</ head >
< body >
< cc:if  items ="a:b:c:d"  var ="line"  varStatus ="s" >
  
< c:out  value ="${s.first}" />< br >
  
< c:forTokens  items ="${line}"  delims =":"  var ="field" >
      
< c:out  value ="${field}" />< br >
  
</ c:forTokens >
</ cc:if >
</ body >
</ html >

 

结果很容易,因为只有一个String,所以外层循环只循环一次,内层根据delims循环四次

 

true
a
b
c
d



使用JSTL开发jsp自定义标签开发---迭代标签


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论