JAVAME的RMS通用持久化框架 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-16
ess than 0 and maxSize must greater than 0"); 216 } 217 Vector v = new Vector(); 218 RecordEnumeration ren = null; 219 try { 220 RecordStore rs = getRecordStore (cls.getName()); 221 ren = rs.enumerateRecords(fetcher, fetcher, false); 222 fetchRecord(v, cls, ren, from, maxSize); 223 } catch (Exception exe) { 224 LogManager.error("RMSUtil.listObjects (),Class = " + cls + ",exe = " + exe); 225 exe.printStackTrace(); 226 } finally { 227 ren.destroy(); 228 } 229 return v; 230 } 231 232 /** 233 * 插入某个可延迟加载的对象的所有附件到数据库里面去 234 * 插入完成后,此lazy对象将变得很完整,因为此时它的 235 * 附件对象的ID都已经设置好了 236 * @param lazy 要插入附件的主对象 237 * @return 是否插入成功 238 */ 239 private static boolean insertAttachDatas(Lazy lazy) { 240 try { 241 Object[] attachKeys = lazy.getAttachKeys(); 242 RecordStore rs = getRecordStore (lazy.getNameOfAttachRMS()); 243 for (int i = 0; i < attachKeys.length; i++) { 244 Object key = attachKeys[i]; 245 byte[] data = lazy.getAttach (key); 246 int id = rs.addRecord(data, 0, data.length); 247 lazy.savedAttach(key, id); 248 } 249 return true; 250 } catch (Exception exe) { 251 exe.printStackTrace(); 252 LogManager.error ("RMSUtil.insertAttachDatas(),Lazy = " + lazy + ",exe = " + exe); 253 return false; 254 } 255 } 256 257 /** 258 * 得到某个可以延迟加载的对象的某个附件的字节数组内容 259 * TODO 如果能把此方法变成私有,那就更好了 260 * 此方法是专门供lazy对象调用的,这样的话,实体类里面就 出现了 261 * 读取数据的方法,但是由于J2ME不支持反射,只能这样实现 了 262 * @param lazy 可以延迟加载的对象 263 * @param id 附件的ID 264 * @return 对应的数组 265 */ 266 public static byte[] getAttachData(Lazy lazy, int id) { 267 try { 268 return getRecordStore (lazy.getNameOfAttachRMS()).getRecord(id); 269 } catch (Exception exe) { 270 exe.printStackTrace(); 271 LogManager.error("RMSUtil.getAttachData (),Lazy = " + lazy + ",id = " + id + ",exe = " + exe); 272 return null; 273 } 274 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于JAVAME的RMS通用持久化框架 - 编程入门网的所有评论