91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用反射機制實現簡單數據查詢

發布時間:2020-07-09 23:27:51 來源:網絡 閱讀:467 作者:ys6taon 欄目:開發技術
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

public class BasicDao {
    private static Connection con = null;
    private static PreparedStatement ps = null;
    private static ResultSet rs = null;
    
    public static <T> List<T> selectAll(Class<T> clazz, String sql, Object parameter) {
        List<T> result = new ArrayList<T>();
        // 遍歷parameter的所有屬性和值作為參數
        Field[] paramField = parameter.getClass().getDeclaredFields();
        for (Field pf : paramField) {
            try {
                if (pf.getType() == String.class) {
                    if (pf.get(parameter) != null) {
                        sql = sql.replace("/*" + pf.getName() + "*/", "'" + pf.get(parameter).toString() + "'");
                    }
                } else {
                    if (pf.get(parameter) != null) {
                        sql = sql.replace("/*" + pf.getName() + "*/", pf.get(parameter).toString());
                    }
                }
                System.out.println(pf.getName() + ":" + pf.get(parameter));
            } catch (IllegalArgumentException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            }
        }
        try {
            con = DBConnection.ConnectDB();
            ps = con.prepareStatement(sql);
            System.out.println("[sql]:" + ps.toString().substring(ps.toString().indexOf(" ")));
            rs = ps.executeQuery();
            while (rs.next()) {
                T entity;
                try {
                    entity = clazz.newInstance();
                } catch (Exception e) {
                    e.printStackTrace();
                    return result;
                }
                Field[] entityFiled = clazz.getFields();
                int fieldCount = 0;
                for (Field ef : entityFiled) {
                    // 根據字段取出對應set方法賦值
                    Method m;
                    try {
                        m = entity.getClass().getMethod(
                                "set" + ef.getName().substring(0, 1).toUpperCase() + ef.getName().substring(1),
                                ef.getType());
                        if (ef.getType() == Integer.class) {
                            m.invoke(entity, rs.getInt(++fieldCount));
                        } else if (ef.getType() == Long.class) {
                            m.invoke(entity, rs.getLong(++fieldCount));
                        } else if (ef.getType() == Double.class) {
                            m.invoke(entity, rs.getDouble(++fieldCount));
                        } else if (ef.getType() == Date.class) {
                            m.invoke(entity, rs.getDate(++fieldCount));
                        } else if (ef.getType() == String.class) {
                            m.invoke(entity, rs.getString(++fieldCount));
                        } // TODO
                    } catch (Exception e) {
                        e.printStackTrace();
                        return result;
                    }
                }
                result.add(entity);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜阳县| 许昌县| 民丰县| 茌平县| 石阡县| 广河县| 马关县| 文山县| 建始县| 株洲县| 明水县| 长海县| 玉门市| 郧西县| 墨玉县| 炎陵县| 江源县| 合水县| 五大连池市| 电白县| 龙南县| 潼南县| 舒兰市| 宜兴市| 应城市| 津市市| 昭平县| 乐至县| 连山| 香河县| 五台县| 沁阳市| 万载县| 鄱阳县| 岢岚县| 昆明市| 五指山市| 伽师县| 彝良县| 高青县| 镇赉县|