JAVA实体类对象怎么遍历
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA实体类对象怎么遍历相关的知识,希望对你有一定的参考价值。
String hql="select count(*),server.item from Cstserver as server group by server.item";
本来查询出一个list,但是不好显示,别人提醒说,可以把查到的数据放到放到一个实体类对象中,遍历对象就可以
没明白,忘高人解释
,包在com/mangeuser下面,且在实体中有个构造器是关于countuser与password的,那么把查到的数据放到放到一个实体类对象中的意思是:
String hql="select new com.mangeuser.User(count(*),server.item) from Cstserver as server group by server.item";
然后你得到的列表就是你对象的list 参考技术B //按ID查询:推荐使用HQL--Hibernate官方推荐的查询语言
public Person queryById(String id)
Person p = null;
//使用Hibernate查询语言
String hql = "FROM Person as p WHERE p.id=?" ;
//通过Query接口查询
Query q = this.session.createQuery(hql) ;
q.setString(0, id);
List list = q.list() ;
Iterator iter = list.iterator();
while(iter.hasNext())
p = (Person)iter.next();
return p ;
本回答被提问者采纳
java遍历实体类的属性和数据类型以及属性值
遍历实体类的树形和数据类型一级属性值
/** * 遍历实体类的属性和数据类型以及属性值 * @param model * @throws NoSuchMethodException * @throws IllegalAccessException * @throws IllegalArgumentException * @throws InvocationTargetException */ public static void reflectTest(Object model) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { // 获取实体类的所有属性,返回Field数组 Field[] field = model.getClass().getDeclaredFields(); // 遍历所有属性 for (int j = 0; j < field.length; j++) { // 获取属性的名字 String name = field[j].getName(); // 将属性的首字符大写,方便构造get,set方法 name = name.substring(0, 1).toUpperCase() + name.substring(1); // 获取属性的类型 String type = field[j].getGenericType().toString(); // 如果type是类类型,则前面包含"class ",后面跟类名 System.out.println("属性为:" + name); if (type.equals("class java.lang.String")) { Method m = model.getClass().getMethod("get" + name); // 调用getter方法获取属性值 String value = (String) m.invoke(model); System.out.println("数据类型为:String"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } if (type.equals("class java.lang.Integer")) { Method m = model.getClass().getMethod("get" + name); Integer value = (Integer) m.invoke(model); System.out.println("数据类型为:Integer"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } if (type.equals("class java.lang.Short")) { Method m = model.getClass().getMethod("get" + name); Short value = (Short) m.invoke(model); System.out.println("数据类型为:Short"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } if (type.equals("class java.lang.Double")) { Method m = model.getClass().getMethod("get" + name); Double value = (Double) m.invoke(model); System.out.println("数据类型为:Double"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } if (type.equals("class java.lang.Boolean")) { Method m = model.getClass().getMethod("get" + name); Boolean value = (Boolean) m.invoke(model); System.out.println("数据类型为:Boolean"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } if (type.equals("class java.util.Date")) { Method m = model.getClass().getMethod("get" + name); Date value = (Date) m.invoke(model); System.out.println("数据类型为:Date"); if (value != null) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } } }
由于我的实体bean里有double类型,我又不想用其封装类的方法获取值,于是我在他的基础上又加入了一段代码,
if (type.equals("double")) { Method m = model.getClass().getMethod("get" + name); double value = (double) m.invoke(model); System.out.println("数据类型为:double"); if (value >0) { System.out.println("属性值为:" + value); } else { System.out.println("属性值为:空"); } } System.out.println("属性类型为:"+type);
这样一来,就可以知道属性类型是什么,可以很好的加判断语句了。当然原文代码还有很多值得优化的地方,我这里就没有进行优化,准备等我将它与poi导出整合之后再来优化。
以上是关于JAVA实体类对象怎么遍历的主要内容,如果未能解决你的问题,请参考以下文章