风之力

BlogJava 首页 新随笔 联系 聚合 管理
  19 Posts :: 2 Stories :: 18 Comments :: 0 Trackbacks

我的评论

re: spring下lob数据处理【原创】 风之力 2008-08-05 08:57  
@gyhgc
AbstractLobStreamingResultSetExtractor的
public final Object extractData(ResultSet rs) throws SQLException, DataAccessException {
if (!rs.next()) {
handleNoRowFound();
}
else {
try {
streamData(rs);
if (rs.next()) {
handleMultipleRowsFound();
}
}
catch (IOException ex) {
throw new LobRetrievalFailureException("Couldn't stream LOB content", ex);
}
}
return null;
}
是先做了一次rs.next()的,所以rs的指针是指到第一行的
你可以do{}while(rs.next())的嘛......
re: spring下lob数据处理【原创】 风之力 2008-08-04 10:14  
@gyhgc
不是很明白你的意思,操作应该都是一样的
你是指不要上面那段,直接写
while(rs.next()){
name = rs.getString(2);
final OutputStream os1 = new FileOutputStream(new File(path+name));
FileCopyUtils.copy(lobHandler.getBlobAsBinaryStream(rs, 1), os1);
list.add(name);
os1.close();
}
取不到第一张图片?
re: cookie、userdata、sessionStorage[转载] 风之力 2007-06-28 08:34  
@ai
IE我不清楚了 好像没这功能
maxthon有关闭后清除历史的功能吧