StringUtils.join(sqls.get(key).toArray(), ",")
JSONObject json = JSON.parseObject(selection);
String colType = json.getString("colType");
作用及用法:Checks if a CharSequence is whitespace, empty ("") or null.
StringUtils.isBlank(null) = true
StringUtils.isBlank("") = true
StringUtils.isBlank(" ") = true
StringUtils.isBlank("bob") = false
StringUtils.isBlank(" bob ") = false
if (StringUtils.isBlank(colType)) {
colType = search.getColType();
}
ArrayUtils.addAll(数组1, 数组2)
String[] col = mainDto.getExtendCols().split(",");
List<String> extendCol = new ArrayList<String>();
Collections.addAll(extendCol, col);
mainDic.setExtendCols(extendCol.toString().replaceAll("^\\[| |\\]$", ""));
1.Integer转换成int的方法
Integer i = new Integer(10);
int k = i.intValue();
即Integer.intValue();
2.int转换成Integer
int i = 10;
Integer it = new Integer(i);
3.String转换成int的方法
String str = "10";
Integer it = new Interger(str);
int i = it.intValue();
即:int i = Integer.intValue(string);
4.int转换成String
int i = 10;
(1)String s = String.valueOf(i);
(2)String s = Ingeger.toString(i);
(3)String s = "" + i;
5.String转换成Integer
String str = "10";
Integer it = Integer.valueOf(str);
6.Integer转换成String
Integer it = new Integer(10);
String str = it.toString();