字符串数组转换为字符串 String[] strs = new String[]{"1","2","3"} ;String str = StringUtils.join(strs,",");结果:str="1,2,3"