将add_back.jsp中的
String xc = request.getParameter("xc");改为
String [] h = request.getParameterValues("xc"); //将多选的数据存到数组中String xc = Arrays.toString(h); //将数组转为集合,将数据拼到一起xc = xc.substring(1, xc.length()-1);//去掉集合两边的括号多选效果