当前位置: 技术问答>java相关
skyyoung再帮个忙,程序出错,谢谢!!
来源: 互联网 发布时间:2015-03-16
本文导语: Oracle8.17 Jbuilder5 tomcat3.2 jdk1.3 jsp程序 以下两段代码都提示以下错误 java.io.IOException: ORA-22920: 未锁定含有 LOB 值的行 第一段 BLOB blob = (oracle.sql.BLOB)lRs.getBlob("b"); File binaryFile = new File("e:\paper.jpg")...
Oracle8.17 Jbuilder5 tomcat3.2 jdk1.3 jsp程序
以下两段代码都提示以下错误
java.io.IOException: ORA-22920: 未锁定含有 LOB 值的行
第一段
BLOB blob = (oracle.sql.BLOB)lRs.getBlob("b");
File binaryFile = new File("e:\paper.jpg");
System.out.println("paper.jpg length = " + binaryFile.length());
FileInputStream instream = new FileInputStream(binaryFile);
OutputStream outstream = blob.getBinaryOutputStream();
int size = blob.getBufferSize();
byte[] buffer = new byte[size];
int length = -1;
while ((length = instream.read(buffer)) != -1)
outstream.write(buffer, 0, length);
instream.close();
outstream.close();
第二段
OutputStream outstream = blob.getBinaryOutputStream();
byte[] bAtt = "e:\paper.jpg".getBytes();
outstream.write(bAtt,0,bAtt.length);
outstream.close();
|
参照
http://www.csdn.net/oldexpert/TopicView.asp?id=83096&table=200101
http://www.csdn.net/expert/TopicView.asp?id=412849
Good luck!
http://www.csdn.net/oldexpert/TopicView.asp?id=83096&table=200101
http://www.csdn.net/expert/TopicView.asp?id=412849
Good luck!
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。