将string数组转化为sql的in条件

  例如:我想将String[] str = {"4","5","6"}转化为“‘4’,‘5’,‘6’”字符串。这样我就可以用sql查询:select * from tableName id in (字符串)了。

项目中实现的源码如下:

                StringBuffer idsStr = new StringBuffer();
		for (int i = 0; i < ids.length; i++) {
			if (i > 0) {
				idsStr.append(",");
			}
			idsStr.append("'").append(ids[i]).append("'");
		}


我自己想到的另一种方式实现如下:

	public static String stringArray2Strin(String[] str) {
		
		StringBuffer sb = new StringBuffer();
		for (int i = 0; i < str.length; i++) {
			sb.append("'").append(str[i]).append("'").append(",");
		}
		return sb.toString().substring(0, sb.length() - 1);
	}

	public static void main(String[] args) {
		String[] str = { "4", "5", "6" };
		System.out.println(ItemGroupService.stringArray2String(str));
	}


将string数组转化为sql的in条件,布布扣,bubuko.com

将string数组转化为sql的in条件

上一篇:mysql获得60天前unix时间


下一篇:mysql删除字段语句