溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java反射技術(shù)的使用場(chǎng)景

發(fā)布時(shí)間:2021-07-10 13:54:41 來源:億速云 閱讀:175 作者:chen 欄目:編程語言

這篇文章主要介紹“java反射技術(shù)的使用場(chǎng)景”,在日常操作中,相信很多人在java反射技術(shù)的使用場(chǎng)景問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”java反射技術(shù)的使用場(chǎng)景”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

如何用java反射技術(shù)將sql操作與面向?qū)ο缶幊剃P(guān)聯(lián)起來

請(qǐng)看一例


public class SqlUtil extends BaseApplogic {

   public List excuteQuery(String sql, Object[] paras, Object voo)
           throws AppException {
       DBPersistenceManager dbpm = this.getFnmsDBPM();
       List list=new ArrayList();
       try {
           DataSet ds = (DataSet) dbpm.executeQuery(sql, paras);
           
           DataSetMetaData dsmd = ds.getDataSetMetaData();
           
           Field[] fd = voo.getClass().getDeclaredFields();
           String className = voo.getClass().getName();
           int size = fd.length;
           Method md[]=new Method[size];
           //構(gòu)造method[]
           for (int i = 0; i < size; i++) {
               Attribute attr=dsmd.getAttribute(fd[i].getName().toUpperCase());
               if (null != attr) {
                   Field f = voo.getClass().getDeclaredField(fd[i].getName());
                   String type = f.getType().getName();
                   Class[] types=getTypes(type);  
                   String methodName=getSetterName(fd[i].getName());
                   md[i] = voo.getClass().getMethod(
                           methodName,types);
               }
           }
           
           while(ds.next()){
               Object o = Class.forName(className).newInstance();
               for (int i = 0; i < size; i++) {
                   if(null!=md[i]){
                       //調(diào)用
                       Attribute attr=dsmd.getAttribute(fd[i].getName().toUpperCase());
                       if (null==attr) continue;
                       Object[] pa=new Object[]{ds.getString(attr.getAttrName())};
                       md[i].invoke(o,pa);
                   }
               }
               list.add(o);
           }
       } catch (DrmException drme) {
           this.handleException(drme);
       } catch (Exception e) {
           this.handleException(e);// 新增加的異常處理
       } finally {
           if (dbpm != null) {
               dbpm.close();
           }
       }
       return list;

   }

   //由屬性調(diào)用set方法
   public static String getSetterName(String propName) {
       return "set" + propName.substring(0, 1).toUpperCase()
               + propName.substring(1, propName.length());

   }

   // 取類型
   public static Class[] getTypes(String type) {
       if (type.equals("java.lang.String")) {
           return new Class[] { String.class };
       } else if (type.equals("int")) {
           return new Class[] { Integer.TYPE };
       } else if (type.equals("long")) {
           return new Class[] { Long.TYPE };
       } else if (type.equals("float")) {
           return new Class[] { Float.TYPE };
       } else {
           System.out.println("no such type!");
           return null;
       }

   }
}

其中excuteQuery方法傳入三個(gè)參數(shù),第一個(gè)是要查詢的sql語句,第二個(gè)是參數(shù)數(shù)組,第三個(gè)是要返回的對(duì)象類型。

返回值是一個(gè)list,list中的每個(gè)對(duì)象都是你傳入的對(duì)象類型。

經(jīng)過這樣一種包裝,將sql與對(duì)象自然的封裝起來,不用每個(gè)查詢都查出來以后,再resultset.next(),再getString(),然后再setXxx();

當(dāng)然,這只是元數(shù)據(jù)與java對(duì)象反射技術(shù)利用的冰山一角。

到此,關(guān)于“java反射技術(shù)的使用場(chǎng)景”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI