1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/** * MethodName: getReflection<br> * Description:解析respXML 在通過反射設置對象屬性值 * User: liqijing * Date:2015-7-19下午12:42:55 * @param clzzName * @param respXML * @return * @throws ClassNotFoundException * @throws DocumentException * @throws IllegalArgumentException * @throws IllegalAccessException * @throws InstantiationException * @throws SecurityException * @throws NoSuchFieldException */ public static <T> Object getReflection(String clzzName , String respXML) throws ClassNotFoundException, DocumentException, IllegalArgumentException, IllegalAccessException, InstantiationException, SecurityException, NoSuchFieldException{ Object o = Class.forName(clzzName).newInstance(); Class clz = Class.forName(clzzName).newInstance().getClass(); Document doc = null ; doc = DocumentHelper.parseText(respXML); Element el = doc.getRootElement(); for (Field f : clz.getDeclaredFields()){ Iterator it=el.elementIterator(); while (it.hasNext()){ Element elt = (Element) it.next(); if (f.getName().equals(elt.getName())){ f = clz.getDeclaredField(elt.getName()); f.setAccessible( true ); f.set(o, elt.getText()); } } } return o; } |
Dear All:
在開發過程中有類似的需求通過反射動態設置屬性值,希望有幫助。也很高興與大家分享,謝謝。
以上這篇Java通過反射機制動態設置對象屬性值的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持服務器之家。