欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java反射,泛型在Json中的运用

程序员文章站 2022-03-15 08:23:38
最近项目中遇到了json数据自动获取的功能,不然令人想起java的反射,已经很长时间没复习java了正好一块连java的这一块内容一起过一遍。java中的反射无疑就相当于java开发者的春天,在众多的...

最近项目中遇到了json数据自动获取的功能,不然令人想起java的反射,已经很长时间没复习java了正好一块连java的这一块内容一起过一遍。java中的反射无疑就相当于java开发者的春天,在众多的框架中也能看到它的身影,可以在运行时检查类,接口、变量和方法等信息,可以实例化调用方法以及设置变量值等。本文主要以代码的形式直接将反射,泛型的运用展现出来。

java中的反射

首先新建一个基础类author。

package bean;
/**
 * 
 * @author super~me
 * description: 基础类
 *
 */
public class author {
	private static string tag="big";
	private string name;
	private int age;
	public author(){}
	public author(string name, int age) {
		super();
		this.name = name;
		this.age = age;
	}
	public string getname() {
		return name;
	}
	public void setname(string name) {
		this.name = name;
	}
	public int getage() {
		return age;
	}
	public void setage(int age) {
		this.age = age;
	}
	
	public string tostring() {
		return "author [name=" + name + ", age=" + age + "]";
	}
	private string pmethod(string t){
		string result=t+" private method";
		return result;
	}
	

}

然后新建一个反射类,运用反射方法对上面的类进行访问.包括对私有方法的访问,对私有属性的访问等。其中常用的一些方法以及解释:

 Java反射,泛型在Json中的运用

//对象的创建
	public static void reflectnewinstance(){
		try {
			class<?> authorclass=class.forname(path_reflectfrom);
			object object =authorclass.newinstance();
			author author=(author) object;
			author.setname("周大亨");
			author.setage(89);
			system.out.println("author: "+author.tostring());
			
		} catch (classnotfoundexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (instantiationexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalaccessexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		}
		
	}
	//对私有的方法进行反射
	public static void reflectprivateconstructor(){
		try {
			class<?> authorclass =class.forname(path_reflectfrom);
			constructor<?> declaredconstructor =authorclass.getdeclaredconstructor(string.class,int.class);
			declaredconstructor.setaccessible(true);
			object object=declaredconstructor.newinstance("lida",88);
			author author=(author) object;
			system.out.println( "author: "+author.tostring());
		} catch (classnotfoundexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (nosuchmethodexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (instantiationexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalaccessexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalargumentexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (invocationtargetexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		}
		
	}
	//反射私有的属性
	public static void reflectprivatefield(){
		try {
			class<?> authorclass =class.forname(path_reflectfrom);
			object authorobject=authorclass.newinstance();
			field field=authorclass.getdeclaredfield("tag");
			field.setaccessible(true);
			string tag=(string)field.get(authorobject);
			system.out.println( "private field tag:"+tag);
		} catch (classnotfoundexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (instantiationexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalaccessexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (nosuchfieldexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		}
		
	}
	//反射获取私有的方法
	private static void reflectmethod(){
		try {
			class<?> authorclass=class.forname(path_reflectfrom);
			object authorobject=authorclass.newinstance();
			method authormethod=authorclass.getdeclaredmethod("pmethod", string.class);
			authormethod.setaccessible(true);
			string string=(string)authormethod.invoke(authorobject, tag);
			system.out.println( "private method: "+string);
			
		} catch (classnotfoundexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (instantiationexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalaccessexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (nosuchmethodexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (illegalargumentexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		} catch (invocationtargetexception e) {
			// todo auto-generated catch block
			e.printstacktrace();
		}
		
		
	}

通过控制台打印以上信息:查看运用结果

reflectclass.reflectnewinstance();
reflectclass.reflectprivatefield();
reflectclass.reflectprivateconstructor();
reflectclass.reflectmethod();

运行结果:

Java反射,泛型在Json中的运用

泛型的运用

对于泛型其实很好理解,通俗点讲就是我们将类型也当成了参数进行传值,这样做代码的安全性很大的被提升了,也为较大的优化带来可能。泛型可以使编译器知道一个对象的限定类型是什么,这样编译器就可以在一个高的程度上验证这个类型消除了强制类型转换 使得代码可读性好,减少了很多出错的机会。但是也要记住泛型的规范,比如静态的变量和方法不能引用泛型变量,我们也不能利用instanceof等方法对泛型的类型进行判断,当然这样做也毫无意义,重要的一点是泛型类不能继承exception或者throwable。泛型的继承中,不论子类是否为泛型类,所继承和实现的父类接口都需要被指定。
常用的泛型类型变量:
e:元素(element)
k:关键字(key)
n:数字(number)
t:类型(type)
v:值(value)
另外泛型界定的概念主要是指对泛型类型进行一个限定。比如:

public static <t extends string> t add(t str1, t str2) { return "";}

利用泛型和反射实现对json数据的保存

//利用反射获取json数据到java类
  private static void getjson(){
  	try {
  		string json = "{\"name\":\"miss王\",\"age\":79}";     
      jsonobject source=jsonobject.parseobject(json); 
      class<?> aclass = class.forname("bean.author");
      object obj = aclass.newinstance();
      field[] declaredfields = aclass.getdeclaredfields();
      for (field field : declaredfields) {
        field.setaccessible(true);
        system.out.println(source.getstring(field.getname()));
        if (field.getgenerictype().tostring().equals(string.class.tostring())) {
          field.set(obj, source.getstring(field.getname()));
        } else if (field.getgenerictype().tostring().equals(int.class.tostring())) {
          field.set(obj, source.getinteger(field.getname()));
        } 
      }
      author author = (author) obj;
      system.out.print(author);
    } catch (exception e) {
      e.printstacktrace();
    }
 
  }

我们想把以上的实现封装起来,这时就用了泛型。

 //泛型+反射实现json数据读取到java类
  public static <t> t getjsonclass(string json, class<t> beanclass) {
    try {
      jsonobject jsonobject = jsonobject.parseobject(json);
      object obj = beanclass.newinstance();
      //拿到所以元素
      field[] declaredfields = beanclass.getdeclaredfields();
      for (field field : declaredfields) {
        field.setaccessible(true);
      	
        if (field.getgenerictype().tostring().equals(string.class.tostring())) {
        	string value=jsonobject.getstring(field.getname());
          if(value!=null){
           field.set(obj,value);
          system.out.println(value);
          }
        } else if (field.getgenerictype().tostring().equals(int.class.tostring())) {
         	if(jsonobject.getinteger(field.getname())!=null)
           field.set(obj,jsonobject.getinteger(field.getname()));
           
        }
        
      }
      return (t) obj;
    } catch (exception e) {
      e.printstacktrace();
    }
    return null;
  }

调用实现:

public static void main(string[] args) {
		// todo auto-generated method stub
		string json = "{\"name\":\"李先生\",\"age\":82}"; 
		//reflectjson.getjson();
		//解析json然后换成实体类
		author author=getjsonclass(json, author.class);
		system.out.print( author.tostring());
	}

运行结果:

Java反射,泛型在Json中的运用

Java反射,泛型在Json中的运用

以上就是java反射,泛型在json中的运用的详细内容,更多关于java反射,泛型的资料请关注其它相关文章!