我有一个名为listout的ArrayList<String>
,我想将其转换为ArrayList<SelectItem>
。我怎样才能做到这一点?
PS:JSF的selectItem
最佳答案
假设您的意思是JSF的SelectItem
:
List<SelectItem> items = new ArrayList<SelectItem>(listout.size());
for(String value : listout){
items.add(new SelectItem(value));
}
return items;
关于java - 将ArrayList <String>转换为ArrayList <SelectItem>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6744694/