码迷,mamicode.com
首页 > Web开发 > 详细

如何相互转换逗号分隔的字符串和List --https://blog.csdn.net/yywusuoweile/article/details/50315377

时间:2018-06-21 11:55:07      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:http   highlight   board   title   oar   net   .net   tle   如何   

如何相互转换逗号分隔的字符串和List ---https://blog.csdn.net/yywusuoweile/article/details/50315377

方法 2: 利用Guava的Joiner

 

[java] view plain copy
 
  1. List<String> list = new ArrayList<String>();  
  2. list.add("a");  
  3. list.add("b");  
  4. list.add("c");  
  5. String str = Joiner.on(",").join(list);  

如何相互转换逗号分隔的字符串和List --https://blog.csdn.net/yywusuoweile/article/details/50315377

标签:http   highlight   board   title   oar   net   .net   tle   如何   

原文地址:https://www.cnblogs.com/czlovezmt/p/9207099.html

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