JAvaにおけるList,array,setの変換
351 ワード
方法1、
Array ==> List ==> Set
方法2、
Array ==> List ==> Set
String[] picklist = (String[]) paramMap.get("picklist");
HashSet<String> hmPid = new HashSet<String>(Arrays.asList(picklist));
方法2、
import org.apache.commons.collections.CollectionUtils;
CollectionUtils.addAll(strList, strArray); // set