码迷,mamicode.com
首页 > 编程语言 > 详细

Java list 转字符串并加入分隔符的方法

时间:2019-04-09 18:13:02      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:comm   字符   second   ons   com   util   list   imp   org   

import org.apache.commons.lang.StringUtils;

List<String> list=new ArrayList<String>();
list.add("first");
list.add("second");
list.add("third");

StringUtils.join(list.toArray(), ",")

Java list 转字符串并加入分隔符的方法

标签:comm   字符   second   ons   com   util   list   imp   org   

原文地址:https://www.cnblogs.com/lixxx/p/10678598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!