Json   发布时间:2022-04-22  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了根据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://code.js-code.com/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://code.js-code.com/article/p-dgymtvfj-no.html

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

大佬总结

以上是大佬教程为你收集整理的根据jsonobject中的部分数据更新javabean中对应的属性[PATCH]全部内容,希望文章能够帮你解决根据jsonobject中的部分数据更新javabean中对应的属性[PATCH]所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。