Java中的返回值集合_JavaList集合返回值去掉中括号([])的
操作
如下所⽰:
调⽤stringutils⼯具类的strip()⽅法去掉中括号"[ ]":
stringutils.string(),"[]") //第⼀个参数放集合,第⼆个参数去掉中括号"[]"
stringutils⼯具类代码:
package com.ktamrmon.utils;
import ext.strformatter;
import llection;
import java.util.map;
/**
* 字符串⼯具类
*
* @author ktamr
*/
public class stringutils extends org.apachemons.lang3.stringutils {
/** 空字符串 */
private static final string nullstr = "";
/** 下划线 */
private static final char separator = '_';
/**
* 获取参数不为空值
*
* @param value defaultvalue 要判断的value
* @return value 返回值
*/
public static t nvl(t value, t defaultvalue)
{
return value != null ? value : defaultvalue;
}
/
**
* * 判断⼀个collection是否为空, 包含list,set,queue
*
* @param coll 要判断的collection
* @return true:为空 false:⾮空
*/
public static boolean isempty(collection> coll)
{
return isnull(coll) || coll.isempty();
}
/**
* * 判断⼀个collection是否⾮空,包含list,set,queue
*
* @param coll 要判断的collection
* @return true:⾮空 false:空
*/
public static boolean isnotempty(collection> coll) {
return !isempty(coll);
}
/**
* * 判断⼀个对象数组是否为空
*
* @param objects 要判断的对象数组
** @return true:为空 false:⾮空
*/
public static boolean isempty(object[] objects)
{
return isnull(objects) || (objects.length == 0);
}
/**
* * 判断⼀个对象数组是否⾮空
*
* @param objects 要判断的对象数组
* @return true:⾮空 false:空
*/
public static boolean isnotempty(object[] objects) {
return !isempty(objects);
}
/**
* * 判断⼀个map是否为空
*
* @param map 要判断的map
* @return true:为空 false:⾮空
*/
public static boolean isempty(map, ?> map)
{
return isnull(map) || map.isempty();
}
/**
* * 判断⼀个map是否为空
*
* @param map 要判断的map
* @return true:⾮空 false:空
*/
public static boolean isnotempty(map, ?> map) {
return !isempty(map);
}
/**
* * 判断⼀个字符串是否为空串
*
* @param str string
* @return true:为空 false:⾮空
*/
public static boolean isempty(string str)isnull的用法
{
return isnull(str) || nullstr.im());
}
/**
* * 判断⼀个字符串是否为⾮空串
*
* @param str string
* @return true:⾮空串 false:空串
*/
public static boolean isnotempty(string str)
{
return !isempty(str);
}
/
**
* * 判断⼀个对象是否为空
*
* @param object object
* @return true:为空 false:⾮空
*/
public static boolean isnull(object object)
{
return object == null;
}
/**
* * 判断⼀个对象是否⾮空
*
* @param object object
* @return true:⾮空 false:空
*/
public static boolean isnotnull(object object)
{
return !isnull(object);
}
/**
* * 判断⼀个对象是否是数组类型(java基本型别的数组)
*
* @param object 对象
* @return true:是数组 false:不是数组
*/
public static boolean isarray(object object)
{
return isnotnull(object) && lass().isarray(); }
/**
* 去空格
*/
public static string trim(string str)
{
return (str == null ? "" : im());

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。