参考文章
[url]
http://biancheng.dnbcw.info/java/71552.html[/url]
[url]
http://biancheng.dnbcw.info/java/71552.html[/url]
@SuppressWarnings("unchecked")
public DeviceInfo getDIByImei(String imei){
ArrayList<DeviceInfo> list = (ArrayList<DeviceInfo>)
s.createQuery("from DeviceInfo where imei = '"+imei+"'").list();
DeviceInfo result = null;
if (list.size()>0) {
result = list.get(0);
}
return result;
}
public void saveOrUpdate(DeviceInfo di){
DeviceInfo getDi = getDIByImei(di.getImei());
if(getDi==null){
DaoFactory.getDiDao().save(di);
}
}
本文详细介绍了如何使用Java语言通过创建查询并利用ArrayList来获取设备信息实例,并提供了设备信息的保存或更新方法。
771

被折叠的 条评论
为什么被折叠?



