//去除list中的重复元素放入到 hashset中,l是 arrayList
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了//去除list中的重复元素放入到 hashset中,l是 arrayList相关的知识,希望对你有一定的参考价值。
//去除list中的重复元素放入到 hashset中,l是 arrayList
HashSet<String> hs = new HashSet<String>(l);
//给arrayList 或 数组 或 hashSet 拼接成字符串
String str= StringUtils.join(hs, "+");
以上是关于//去除list中的重复元素放入到 hashset中,l是 arrayList的主要内容,如果未能解决你的问题,请参考以下文章