使用JAVA读取ORACLE BLOB字段实现上传下载recruit是什么意思
大对象类型BLOB全称为Binary Large Objects,即二进制大对象。可以把BLOB区别为三种形式:声像数据、二进制数据和大文本数据。因此,最常见的应用就是存储图形、声音等对象,此外大二进制对象、OLE 对象也可以通过BLOB类型存入数据库,如果文本对象过大,超出了文本类型的规定长度,则必须用BLOB
字段进行存储。我们在经常使用的编程环境中并不能直接支持BLOB字段,因此需要调用相应的函数完成
BLOB的使用。
二实际Struts项目的处理流程
calling1 插入BLOB字段的流程
表示层:
上传使用struts的<html:file property="drawingFile"/>标签,提交给指定处理的Action,在ActionForm
中使用struts自带的FormFile
来保存文件。
核心代码:
<html:form action="/DrawingInputMultiAction" enctype="multipart/form-data">
brake是什么意思
<html:file property="drawingFile"/>
....省略
</html:form>
控制层:
在Action中将传入的ActionForm中的文件字段赋给VO值对象,并调用业务代理类的上传方法。
核心代码:
//新增
if(actionType.equals("inrt")) {
/
/得到文件类型
int iFileType = FileExtendName());
if(iFileType == 0) {
//不支持文件类型
this.addError(request,
"s.upload.UnSupportedFileType");
} el {
DrawingVO objDrawingVO = new DrawingVO();
//图纸基本属性
objDrawingVO.DrawingName()
);
.
..省略其他t方法
//执行新增(上传)
int iRt = objDrawingMan.inrtDrawing(objDrawingVO);
...省略 }
Facade门面:chants
通过业务代理类调用DAO中的上传方法,对客户端完全透明。
public int inrtDrawing(DrawingVO drawingVO) throws ComtopModuleException {
try {
DrawingDAO drawingDAO = new DrawingDAO();
return drawingDAO.inrtDrawing(drawingVO);
} catch(DrawingException ex) {
throw new ComtopModuleException("s.inrt", ex);
}
}
持久层:
DAO中实现和ORACLE数据库的底层交涉,完成真正的文件上传。
需要先插入一个空BLOB对象,然后Update这个空对象。
public int inrtDrawing(DrawingVO drawingVO) throws DrawingException {
PreparedStatement pstmt = null;
Statement stmt = null;
Connection conn = null;
int iKey = 0;
ResultSet rs = null;
//定义SQL语句range是什么意思
String strSQLInrt = null;
String strSQLUpdate = null;
try {
conn = Connection();
conn.tAutoCommit(fal);
//插入空BLOB,empty_blob(),其中表中的Content是BLOC类型字段高考改错
strSQLInrt =
"inrt into PROD_DRAWING (DRAWING_ID, DRAWING_NAME, 省略..." +
"CONTENT)" +
"values (?, ?, 省略..., empty_blob())";
//得到待处理文件
FormFile drawingFile = DrawingFile();
//插入普通字段
pstmt = conn.prepareStatement(strSQLInrt);
亚加达外语专修学院//得到主键
iKey =
pstmt.tInt(1, iKey);
....省略其他t方法
stmt = ateStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
strSQLUpdate =
"SELECT CONTENT FROM PROD_DRAWING WHERE DRAWING_ID ='" +
iKey + "'" + " FOR UPDATE";
//读出记录以增加图片Blob字段
rs = uteQuery(strSQLUpdate);
()) {
logger.debug("开始写入BLOB");
//这里不能用oracle.sql.BLOB,会报ClassCast异常
weblogic.acle.OracleThinBlob blob =
(weblogic.jdbc.vendor.
oracle.
Blob(1);
logger.debug("得到输出流");
OutputStream outStream = BinaryOutputStream();
InputStream fin = InputStream();
logger.debug("开始分配缓存");
byte[] b = new BufferSize()];
int len = 0;
备忘录英文while((len = ad(b)) != -1) {
logger.debug("正在写入BLOB流");
outStream.write(b, 0, len);
}
logger.debug("关闭所有流");
fin.clo();
outStream.flush();
outStream.clo();
}
rs.clo();
} catch(Exception ex) {
...省略
associations}finally {
that not my nameDBUtil.destroyDB(rs, pstmt, conn);
}
return iKey;
}
2 读取BLOB字段的流程