我有一个字符串,其中包含用逗号分隔的值。现在根据我的需要,我必须用逗号 (,) 拆分字符串并将子字符串连接成查询字符串,但我无法理解..这是我的代码。 ..我需要拆分字符串并连接到查询中..
扩展包含像 1111,2341,5028 这样的值
String extension = request.getParameter("extension");
System.out.println(extension);
if(extension!=""){
//here i need to concate the substring into query delimited by comma.
query=query.concat("'").concat(" and extension='"+extension);
}
任何帮助将不胜感激..提前致谢..