hutool将map转为对象
时间: 2024-01-31 11:03:36 浏览: 138
可以使用Hutool的BeanUtil工具类将Map转为对象。示例代码如下:
```java
Map<String, Object> map = new HashMap<>();
map.put("name", "张三");
map.put("age", 18);
User user = BeanUtil.mapToBean(map, User.class, true);
```
其中,User为目标对象的类型,true表示忽略大小写。
相关问题
hutool json转map
可以使用Hutool中的`JSONUtil.parseObj`方法将JSON字符串转为`JSONObject`对象,然后使用`JSONObject`对象的`toMap`方法转为`Map`对象。示例代码如下:
```java
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
public class JsonToMapDemo {
public static void main(String[] args) {
String jsonStr = "{\"name\":\"张三\",\"age\":18,\"gender\":\"男\"}";
JSONObject jsonObj = JSONUtil.parseObj(jsonStr);
Map<String, Object> map = jsonObj.toMap();
System.out.println(map);
}
}
```
输出结果为:
```
{name=张三, age=18, gender=男}
```
java hutool bean list 转map
可以使用 Hutool 工具包中的 `BeanUtil` 类来将一个 List 转换为一个 Map。
示例代码如下:
```java
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.collection.CollUtil;
import java.util.List;
import java.util.Map;
public class Test {
public static void main(String[] args) {
// 假设有一个类 User,有属性 id、name、age
List<User> userList = CollUtil.newArrayList(
new User(1L, "张三", 20),
new User(2L, "李四", 21),
new User(3L, "王五", 22)
);
// 将 List 转为 Map,以 id 为 key,User 对象为 value
Map<Long, User> userMap = CollUtil.toMap(userList, user -> user.getId(), user -> user);
// 打印转换后的 Map
System.out.println(userMap);
}
static class User {
private Long id;
private String name;
private Integer age;
public User(Long id, String name, Integer age) {
this.id = id;
this.name = name;
this.age = age;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", name='" + name + '\'' +
", age=" + age +
'}';
}
}
}
```
在上面的示例代码中,我们使用 `CollUtil.toMap()` 方法将 List 转为 Map,其中第一个参数是要转换的 List,第二个参数是 key 的获取方式,第三个参数是 value 的获取方式。在本例中,我们将 id 作为 key,User 对象作为 value。
阅读全文