标签:条件 数据库 背景 sys mon int 元素 轻松 针对
背景页面提供逗号拼接的字符串,可作为数据库查询in的条件。
a,b
数据库针对字符串的in条件,要求增加单引号
xx in (‘a‘,‘b‘)
页面的逗号拼接字符串直接转换成数据库要求格式(不使用for循环)
join
org.apache.commons.lang.StringUtils
StringUtils.join(split, "‘,‘")
public static void main(String[] args) {
String[] split = ("阎军梅,李乾毅".replaceAll(",", ",")).split(",");
System.out.println("‘"+StringUtils.join(split, "‘,‘")+"‘");
}
页面逗号拼接字符串,转换为数据库要求的每个元素带单引号的格式。
不使用for循环处理,以上方法即可轻松实现。感谢apache、感谢commons包
标签:条件 数据库 背景 sys mon int 元素 轻松 针对
原文地址:http://blog.51cto.com/zl0828/2300799