EL自定义函数

[size=medium] EL自定义函数实现步骤:
1.开发函数处理类,即普通的Java类;每个函数对应类中的一个静态方法。
2. 建立TLD(Tag Library Descriptor),定义表达式函数。
3.在web.xml中配置TLD文件位置。
4.在JSP页面中使用自定义函数。
因为EL表达式函数,主要功能是完成对数据的修改,统一化格式,所有第一步有时候不需要我们自己来写,使用java.lang.Math中的一些方法也是可能实现的,下面就先介绍这种情况。

一、使用java.lang.Math中的方法
由于是使用java中已有的类,所以第一步就可以不用写了。
1.首先在WEB-INF下面建立一个TLD文件:custom-function.tld
[/size]


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
version="2.0">

1.0



abs
java.lang.Math
int abs(int)




round
java.lang.Math
int round(double)




max
java.lang.Math
int max(int,int)




sqrt
java.lang.Math
double sqrt(double)




sin
java.lang.Math
double sin(double)



[size=medium]
2.在web.xml中配置TLD文件位置,配置如下:
[/size]



xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">





http://chaozhichen.iteye.com/custom-function-tablib



/WEB-INF/tld/custom-function.tld





index.jsp



[size=medium]3.在JSP页面使用自定义函数
custom_function.jsp[/size]

<%@ page pageEncoding="utf-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@ taglib prefix="czc" uri="http://chaozhichen.iteye.com/custom-function-tablib"%>




EL Custom Function Examples



EL Custom Function Examples



The absolute value of ${num} is ${czc:abs(num)}.


The rounded value of ${cout} is ${czc:round(cout)}.

The max value of 10 and 8 is ${czc:max(10,8)}.


The sqrt value of ${sixteen} is ${czc:sqrt(sixteen)}.


The sin value of ${degree} is ${czc:sin(degree)}.




[size=medium]测试结果如下:

[img]http://dl.iteye.com/upload/attachment/443500/f90afafb-d7e7-3394-8089-95ca0fc5d277.jpg[/img][/size]

[size=medium] 二、用户自定义类,实现将数字转换成汉字
1.开发自定义处理函数类
ELFunction.java
[/size]

public class ELFunction {

/**
* 将数字转换成大写
*
* @param num:
* 要转换的数字
* @return
*/
public static String covertNumberToChinese(int num) {
// 定义一个汉字数组
String[] chinese = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" };
// 将数字转换成字符串
String str = "" + num;
String relStr = "";
for (int i = 0; i < str.length(); i++) {
// 得到单个数字
int single = Integer.parseInt(str.valueOf(str.charAt(i)));
System.out.print(single + " ");
// 转换成汉字
relStr += chinese[single];
}
return relStr;
}
}

[size=medium]
2.建立TLD文件,在前面TLD文件的基础上添加如下代码
[/size]



covertNumberToChinese
cn.netjava.util.ELFunction
String covertNumberToChinese(int)


[size=medium]
3.在web.xml中就不用再配置了,在JSP页面加入如下代码
[/size]



自定义函数结果:${czc:covertNumberToChinese(convert)}

[size=medium]
测试结果如下:

[img]http://dl.iteye.com/upload/attachment/443821/8780942e-3e6f-3cd5-aa7b-5f8fa0a7d6bd.jpg[/img]

[/size]

你可能感兴趣的:(JSP,Java,JSP,XML,Web,SUN)