jsp自訂標籤之ifelse與遍曆自訂標籤樣本

來源:互聯網
上載者:User

 這篇文章主要介紹了jsp自訂標籤之ifelse與遍曆自訂標籤,需要的朋友可以參考下

第一個樣本: 簡單的jsp自定標籤擷取內容: 首先建立一個jsp執行個體類然後繼承SimpleTagSupport類 然後實現父類的doTag()方法 在這個方法裡擷取標籤體裡的內容this.getJspBody(); 返回的是JspFragment 類,根據這個類對象調用invoke(this.getJspContext().getOut()); 這個方法裡面也可以寫空,所表達的意思也是輸出到瀏覽器; 代碼如下:public class SimpleDmeo1 extends SimpleTagSupport { @Override public void doTag() throws JspException, IOException { JspFragment js =this.getJspBody(); js.invoke(null); } }  然後在寫tld檔案標籤庫描述檔案,和jsp檔案,這些都較為簡單 如果不想執行某個內容就拋出異常 throw new skipPageException();和面內容就不會顯示 接下來是一個帶屬性的jsp自訂標籤檔案 代碼如下:public class SimpleDmeo1 extends SimpleTagSupport { private int counts; public void setCounts(int counts) { this.counts = counts; } @Override public void doTag() throws JspException, IOException { JspFragment js =this.getJspBody(); for(int i=0;i<counts;i++){ //迴圈擷取 js.invoke(null); } }  } <description>A tag library exercising SimpleTag handlers.</description> <tlib-version>1.0</tlib-version> <short-name>c</short-name>首碼名 <uri>http://www.csdn.com</uri> <tag> <name>demo</name> <tag-class>com.csdn.simple.SimpleDmeo1</tag-class> <body-content>scriptless</body-content> <attribute> <name>counts</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag>  然後再jsp檔案 中寫出內容;  代碼如下:<hbsi:demo counts="3">aaaaaaa<br/></hbsi:demo> //輸出三編 JspFragment js = this.getJspBody(); StringWriter jw = new StringWriter(); js.invoke(jw); String s = jw.toString().toUpperCase(); JspWriter out =this.getJspContext().getOut(); for(int i=0;i<counts2;i++){ out.print(s); } }  這是轉成大寫的代碼,其他的都一致; 關於if else的代碼,太多,我放到資源裡了,有必要的話可以下載下來,僅供參考。  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.