ConvertUtils 进行数据转换

ConvertUtils 是 Commons-BeanUtils 包中的一个数据类型转换工具类,主要用来在字符串和各种类型数据间进行转换,还包括对数组的转换

[代码] [Java]代码
view sourceprint?1 /** 

2  * 将字符串数组转成长整型数组 

3  * ["123","343",69"] -> [123,343,69] 

4  */

5 public static long[] getParamValues(HttpServletRequest req, String name){ 

6     String[] values = req.getParameterValues(name); 

7     if(values==null) return null; 

8     return (long[])ConvertUtils.convert(values, long.class); 

9 }

[代码] [Java]代码
view sourceprint?1 int val = ConvertUtils.convert("2343",int.class)


[代码] [Java]代码

/**
* 功能描述:根据request参数名称获得request参数�?
* Created on 2008-7-7
* @param <T>
* @param request request
* @param paramName 参数名称
* @param T 参数类的类型
* @return 参数�?
*/
protected <T> T getParameterByName(HttpServletRequest request,
String paramName, Class<T> T) {
String pValue = request.getParameter(paramName);
log.debug("参数(" + paramName + ") = " + pValue);
if (StringUtils.isBlank(pValue)) {
return null;
}
return (T) ConvertUtils.convert(pValue, T);
}

你可能感兴趣的:(java)