在项目开发中,经常碰到map转实体对象或者对象转map的场景,工作中,很多时候我们可能比较喜欢使用第三方jar包的api对他们进行转化,而且用起来也还算方便,比如像fastJSON就可以轻松实现map和对象的互转,但这里,我想通过反射的方式
在项目开发中,经常碰到map转实体对象或者对象转map的场景,工作中,很多时候我们可能比较喜欢使用第三方jar包的api对他们进行转化,而且用起来也还算方便,比如像fastJSON就可以轻松实现map和对象的互转,但这里,我想通过反射的方式对他们做转化,也算是对反射的学习和研究吧;
map转java对象
import com.alibaba.fastjson.JSON;import com.alibaba.fastjson.JSONObject;import com.mes.common.core.utils.StringUtils;import java.beans.BeanInfo;import java.beans.IntrospectionException;import java.beans.Introspector;import java.beans.PropertyDescriptor;import java.lang.reflect.Method;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import java.util.logging.Level;import java.util.logging.Logger;
public static Object convertToObject(Class clazz, Map map) throws IntrospectionException, InstantiationException, IllegalAccessException { BeanInfo bi = Introspector.getBeanInfo(clazz); Object obj = clazz.newInstance(); PropertyDescriptor[] pds = bi.getPropertyDescriptors(); String pName; for (PropertyDescriptor pd : pds) { pName = pd.getName(); if (map.containsKey(pName)) { try { if (pd.getPropertyType().getName().equals("java.lang.Long")) { if(StringUtils.isNotEmpty(map.get(pName).toString())){pd.getWriteMethod().invoke(obj, Long.parseLong(map.get(pName).toString())); }// else{//pd.getWriteMethod().invoke(obj, map.get(pName));// } } else { pd.getWriteMethod().invoke(obj, map.get(pName)); } } catch (Exception ex) { Logger.getLogger(MapUtil.class.getName()).log(Level.SEVERE, null, ex); } } } return obj; }
java对象转map
public static Map objectToMap(Object obj) { if (obj == null) { return null; } Map map = new HashMap(); try { BeanInfo beanInfo = Introspector.getBeanInfo(obj.getClass()); PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors(); for (PropertyDescriptor property : propertyDescriptors) { String key = property.getName(); if (key.compareToIgnoreCase("class") == 0) { continue; } Method getter = property.getReadMethod(); Object value = getter != null ? getter.invoke(obj) : null; String v = null; if (value != null) { v = value.toString(); } map.put(key, v); } } catch (Exception e) { e.printStackTrace(); } return map; } public static Map objectToMapObj(Object obj) { if (obj == null) { return null; } Map map = new HashMap(); try { BeanInfo beanInfo = Introspector.getBeanInfo(obj.getClass()); PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors(); for (PropertyDescriptor property : propertyDescriptors) { String key = property.getName(); if (key.compareToIgnoreCase("class") == 0) { continue; } Method getter = property.getReadMethod(); Object value = getter != null ? getter.invoke(obj) : null; map.put(key, value); } } catch (Exception e) { e.printStackTrace(); } return map; }
Map转换为Json字符串
public static String mapToJsonString(Map map) { JSONObject json = new JSONObject(); Iterator> entries = map.entrySet().iterator(); while (entries.hasNext()) { Map.Entry entry = entries.next(); json.put(entry.geTKEy(), entry.getValue()); } return json.toString(); }
Json字符串转换为Map
public static Map jsonStringToMap(String str) { Map map = (Map) JSON.parse(str); return map; }
--结束END--
本文标题: Java中如何优雅的把Map转为对象
本文链接: https://lsjlt.com/news/384598.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0