微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

根据jsonobject中的部分数据更新javabean中对应的属性[PATCH]

springmvc restful api中的patch方法中使用到的一个分享给筒子们:

欢迎批评指正

import java.lang.reflect.Field;
import java.util.Iterator;

import net.sf.json.JSONObject;

public class JavaBeanUtils {
	/**
	 * 根据json中的部分数据更新bean中对应的属性
	 * @param bean
	 * @param json
	 * @return
	 * @throws Exception
	 */
	public static <T> void patch(T bean,JSONObject json) throws Exception{
		Field[] fields=bean.getClass().getDeclaredFields();
		for(Field field:fields){
//			System.out.println(field.getName());
			Iterator iterator = json.keys();
			while(iterator.hasNext()){
				String key = (String) iterator.next();
				if(field.getName().equals(key)){
					String value = json.getString(key);
					String type = field.getType().toString();//得到此属性的类型  
					field.setAccessible(true);//设置些属性是可以访问的  
					// 赋值(目前只判断了以下几种,如有其他的请自行扩展)
					if (type.endsWith("String")) {  
						field.set(bean,value);
					}else if(type.endsWith("float")){
						field.set(bean,Float.valueOf(value));
					}else if(type.endsWith("int")){
						field.set(bean,Integer.parseInt(value));
					}
				}
			}
		}
	}
}

获取属性的相关说明: http://www.jb51.cc/article/p-wfxuojyr-es.html

getFields()获得某个类的所有的公共(public)的字段,包括父类
getDeclaredFields()获得某个类的所有申明的字段,即包括public、private和proteced,但是不包括父类的申明字段。
同样类似的还有getConstructors()和getDeclaredConstructors(),getmethods()和getDeclaredMethods()。

其他实现:

xxxx source = new xxxx();
Method[] sourceMethods = source.getClass().getmethods();
for(int i=0;i<sourceMethods.length;i++){
  if(sourceMethods[i].getName().startsWith("get")){
     lsName = sourceMethods[i].getName().substring(3);   // 属性
     Object lovalue = sourceMethods[i].invoke(source,null);  // 值
     String lsSourceType = sourceMethods[i].getReturnType().getName(); //类型
  }
} 

参考:http://www.jb51.cc/article/p-dgymtvfj-no.html

http://blog.sina.com.cn/s/blog_3c62c21f01011xci.html

原文地址:https://www.jb51.cc/json/289273.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐