如何用stream把List<Teacher> 转 List<Map<String, Object>> List<Teacher> list5 = new ArrayList<>(); list5.add(new Teacher(1, "马强", 4, 40)); list5.add(new Teacher(2, "花无缺", 3, 50)); list5.add(new Teacher(3, "西门吹雪", 5, 45));
时间: 2023-06-08 15:04:41 浏览: 87
可以使用Java 8中的Stream API将List<Teacher>转换为List<Map<String, Object>>。代码如下:
List<Map<String, Object>> resultList = list5.stream()
.map(teacher -> {
Map<String, Object> map = new HashMap<>();
map.put("id", teacher.getId());
map.put("name", teacher.getName());
map.put("level", teacher.getLevel());
map.put("age", teacher.getAge());
return map;
})
.collect(Collectors.toList());
其中,map(teacher -> {...})是一个Lambda表达式,使用map方法将每个Teacher对象转换为一个Map<String, Object>对象,然后使用collect方法将所有Map对象收集到一个List中。
相关问题
下列集合对象创建正确的是() ArrayList<int> list = new ArrayList<>(); ArrayList<Integer> list = new ArrayList<>(); ArrayList<> list = new ArrayList<Integer>(); ArrayList<Object> list4 = new ArrayList<Integer>();
下列集合对象创建正确的是:
ArrayList<Integer> list = new ArrayList<>();
在Java中,泛型只能使用引用类型,不能使用基本类型。因此,需要使用包装类Integer来代替基本类型int。正确的语法是在尖括号内指定泛型的类型,如ArrayList<Integer>表示创建一个存储Integer对象的ArrayList集合对象。
其他选项是错误的:
ArrayList<int> list = new ArrayList<>(); - 错误,基本类型int不能用作泛型参数。
ArrayList<> list = new ArrayList<Integer>(); - 错误,尖括号内必须指定泛型的类型。
ArrayList<Object> list4 = new ArrayList<Integer>(); - 错误,泛型类型必须匹配,不能将一个泛型类的对象赋值给另一个泛型类的引用。
List<String> list=new ArrayList<>();和List<Map<String,Object>> mapList=new ArrayList<Map<String,Object>>();和Map<String,Object> listitem=new HashMap<String,Object>()。如果要显示imageview和textview在listview上,这三个变量都能用吗
是的,这三个变量都可以用于在 ListView 中显示 ImageView 和 TextView。需要注意的是,对于 `List<String> list=new ArrayList<>();` 这种情况,我们需要将字符串转换成视图进行显示;对于 `List<Map<String,Object>> mapList=new ArrayList<Map<String,Object>>();` 这种情况,我们需要将其中的 Map 元素转换成视图进行显示;对于 `Map<String,Object> listitem=new HashMap<String,Object>()` 这种情况,我们需要手动将其中的键值对转换成视图进行显示。
以下是一些可能的实现方式:
1. 对于 `List<String> list=new ArrayList<>();`,可以使用 ArrayAdapter 和布局文件来实现:
```
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, R.id.textview, list);
listView.setAdapter(adapter);
```
其中,R.layout.list_item 是自定义的布局文件,包含一个 ImageView 和一个 TextView,R.id.textview 是布局文件中 TextView 的 ID。
2. 对于 `List<Map<String,Object>> mapList=new ArrayList<Map<String,Object>>();`,可以使用 SimpleAdapter 和布局文件来实现:
```
SimpleAdapter adapter = new SimpleAdapter(this, mapList, R.layout.list_item, new String[]{"image", "text"}, new int[]{R.id.imageview, R.id.textview});
listView.setAdapter(adapter);
```
其中,R.layout.list_item 和 R.id.textview 与上面的方式相同,new String[]{"image", "text"} 表示要显示的键名,new int[]{R.id.imageview, R.id.textview} 表示要绑定的视图 ID。
3. 对于 `Map<String,Object> listitem=new HashMap<String,Object>()`,可以手动创建视图并绑定到 ListView 上:
```
View view = LayoutInflater.from(this).inflate(R.layout.list_item, null);
ImageView imageView = view.findViewById(R.id.imageview);
TextView textView = view.findViewById(R.id.textview);
imageView.setImageResource(R.drawable.image);
textView.setText("text");
listView.addView(view);
```
其中,R.layout.list_item、R.id.imageview 和 R.id.textview 与上面的方式相同,R.drawable.image 是图片资源 ID。需要注意的是,这种方式需要手动创建视图并添加到 ListView 中,比较麻烦。
阅读全文