欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用反射原理 , 将ResultSet的结果放到java对象中, 通用公共方法

程序员文章站 2022-06-15 12:32:33
...

用反射原理 , 将ResultSet的结果放到java对象中, 通用公共方法. 详解在方法中 

public static <T> ArrayList<T> putResult(ResultSet rs, Class<T> obj) throws FrameException {
		try {
			ArrayList<T> arrayList = new ArrayList<T>();
			ResultSetMetaData metaData = rs.getMetaData();
			//获取总列数,确定为对象赋值遍历次数
			int count = metaData.getColumnCount();
			while (rs.next()) {
				// 创建对象实例
				T newInstance = obj.newInstance();
				// 开始为一个对象赋值
				for (int i = 1; i <= count; i++) {
					// 给对象的某个属性赋值
					String name = metaData.getColumnName(i).toLowerCase();
					// 改变列名格式成java命名格式
					name = toJavaField(name);
					// 首字母大写
					String substring = name.substring(0, 1);
					String replace = name.replaceFirst(substring, substring.toUpperCase());
					// 获取字段类型
					Class<?> type = obj.getDeclaredField(name).getType();
					Method method = obj.getMethod("set" + replace, type);
					//判断读取数据的类型
					if (type.isAssignableFrom(String.class)) {
						method.invoke(newInstance, rs.getString(i));
					} else if (type.isAssignableFrom(int.class) || type.isAssignableFrom(Integer.class)) {
						method.invoke(newInstance, rs.getInt(i));
					} else if (type.isAssignableFrom(Boolean.class) || type.isAssignableFrom(boolean.class)) {
						method.invoke(newInstance, rs.getBoolean(i));
					} else if (type.isAssignableFrom(Date.class)) {
						method.invoke(newInstance, rs.getDate(i));
					} else if (type.isAssignableFrom(BigDecimal.class)) {
						method.invoke(newInstance, rs.getBigDecimal(i));
					}
				}
				arrayList.add(newInstance);
			}
			return arrayList;
		} catch (Exception e) {
			logger.error(e);
			throw new FrameException("内部错误,请与管理员联系,对象赋值错误");
		}

相关标签: ResultSet 反射