Java uses reflection to get the value of a list in a class object

Source: Internet
Author: User


field[] Fields =Object.getclass (). Getdeclaredfields ();//object is an object instance that has been assigned a value for(Field field:fields) {if(!field.isaccessible ()) {field.setaccessible (true);}if(List.class. IsAssignableFrom (Field.gettype ())) {Type T=Field.getgenerictype (); if(tinstanceofParameterizedtype) {Parameterizedtype pt=(Parameterizedtype) t; Class CLZ= (Class) pt.getactualtypearguments () [0];//Gets the type of the instance in the object list Class clazz=field.get (db). GetClass ();//Gets the value of the property to the class object Method m= Clazz.getdeclaredmethod ("Size"); intSize =(Integer) M.invoke (field.get (db));//Call list's size method to get the length of the list for(inti = 0; i < size; i++) {//Traverse list, call get method, Get object instance in list. Method Getm= Clazz.getdeclaredmethod ("Get",int.class); if(!getm.isaccessible ()) {getm.setaccessible (true); } Mhelper.getdao (CLZ). Createorupdate (Getm.invoke (field.get (db), i));//Add to Ormlite database }}}

Java uses reflection to get the value of a list in a class object

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.