java中遍历属性字段及值

转自:http://www.tqcto.com/article/recommend/162.html

示例代码如下:

[java]  view plain copy
  1. package test;  
  2.   
  3. import java.lang.reflect.Field;  
  4.   
  5. interface IEntity{  
  6.   
  7. }  
  8.   
  9. class Entity implements IEntity{  
  10.     private String s1 = "字符串1";  
  11.   
  12.     private String s2 = "字符串2";  
  13. }  
  14.   
  15. public class Test {  
  16.       
  17.     public static void reflect(IEntity e) throws Exception{  
  18.         Class cls = e.getClass();  
  19.         Field[] fields = cls.getDeclaredFields();  
  20.         for(int i=0; i<fields.length; i++){  
  21.             Field f = fields[i];  
  22.             f.setAccessible(true);  
  23.             System.out.println("属性名:" + f.getName() + " 属性值:" + f.get(e));  
  24.         }   
  25.     }  
  26.       
  27.     public static void main(String[] args) throws Exception{  
  28.         IEntity e = new Entity();  
  29.         reflect(e);  
  30.     }  
  31. }  

你可能感兴趣的:(java中遍历属性字段及值)