Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好我有一个要求,我需要将数据类型转换List为Long逗号分隔String。这将是适当的方式。我曾考虑过使用字符串生成器或将其转换为List<String>然后使用StringUtilsjoin 来获取String.
List
Long
String
List<String>
StringUtils
我正在寻找java 7解决方案,不使用guavaor java 8。
java 7
guava
java 8
你可以试试这个:
StringUtils.join(mylist, ',');
请参阅org.apache.commons.lang3.StringUtils。