将字符串数组中的字符串拼接成一个字符串,中间以“,”分割;
example:
String[] str={"John","lily,","lily","lucy"}; String objectStr=""; for(int i=0;i<str.length;i++){if(i!=str.length-1){objectStr=objectStr.concat(str[i]+",");}else{objectStr=objectStr.concat(str[i]);} }
最后得到的拼接好的字符串为:objectStr="John,lily,lily,lucy"