/** * MethodName: getReflection<br> * Description:解析respXML 在通過(guò)反射設(shè)置對(duì)象屬性值 * 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:
在開發(fā)過(guò)程中有類似的需求通過(guò)反射動(dòng)態(tài)設(shè)置屬性值,希望有幫助。也很高興與大家分享,謝謝。
以上這篇Java通過(guò)反射機(jī)制動(dòng)態(tài)設(shè)置對(duì)象屬性值的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。
新聞熱點(diǎn)
疑難解答
圖片精選