- 浏览: 23062 次
- 性别:
- 来自: 北京
最新评论
http://docs.oracle.com/javase/1.5.0/docs/guide/jdbc/blob.html
http://docs.oracle.com/javase/1.4.2/docs/api/java/sql/Blob.html
http://www.idevelopment.info/data/Programming/java/
http://blog.csdn.net/vean_system/article/details/7549230
http://www.dba-oracle.com/t_java_graphics_blob_retrieval.htm
CLOB
http://docs.oracle.com/javase/1.4.2/docs/api/java/sql/Blob.html
http://www.idevelopment.info/data/Programming/java/
http://blog.csdn.net/vean_system/article/details/7549230
http://www.dba-oracle.com/t_java_graphics_blob_retrieval.htm
PreparedStatement pstmt = conn.prepareStatement("update blob_table set blob = ? where id = ?"); File blob = new File("/path/to/picture.png"); FileInputStream in = new FileInputStream(blob); // the cast to int is necessary because with JDBC 4 there is // also a version of this method with a (int, long) // but that is not implemented by Oracle pstmt.setBinaryStream(1, in, (int)blob.length()); pstmt.setInt(2, 42); // set the PK value pstmt.executeUpdate(); conn.commit();
byte[] data = null; stmt = con.prepareStatement("INSERT INTO BlobTest(fileName, " + "blobData) VALUES(?, ?)"); stmt.setString(1, "some-file.txt"); stmt.setObject(2, data); stmt.executeUpdate();
public static void updateBlobColumn(Connection con, String table, String blobColumn, byte[] inputBytes, String idColumn, Long id) throws SQLException { PreparedStatement pStmt = null; ResultSet rs = null; try { String sql = " SELECT " + blobColumn + " FROM " + table + " WHERE " + idColumn + " = ? " + " FOR UPDATE"; pStmt = con.prepareStatement(sql, ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE); pStmt.setLong(1, id); rs = pStmt.executeQuery(); if (rs.next()) { Blob blob = rs.getBlob(blobColumn); blob.truncate(0); blob.setBytes(1, inputBytes); rs.updateBlob(blobColumn, blob); rs.updateRow(); } } finally { if(rs != null) rs.close(); if(pStmt != null) pStmt.close(); } }
Connection oracleConnection = ... byte[] testArray = ... PreparedStatement ps = oracleConnection.prepareStatement( "insert into test(id, blobfield) values(?, ?)"); BLOB blob = BLOB.createTemporary(oracleConnection, false, BLOB.DURATION_SESSION); OutputStream outputStream = blob.setBinaryStream(0L); InputStream inputStream = new ByteArrayInputStream(testArray); byte[] buffer = new byte[blob.getBufferSize()]; int byteread = 0; while ((byteread = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, byteread); } outputStream.close(); inputStream.close(); ps.setInt(1, 100); ps.setBlob(2, blob); ps.executeUpdate(); ps.close();
insert empty_blob() value. select the row with for update. insert the real value. This works fine for me, here is an example: Connection oracleConnection = ... byte[] testArray = ... PreparedStatement ps = oracleConnection.prepareStatement( "insert into test (id, blobfield) values(?, empty_blob())"); ps.setInt(1, 100); ps.executeUpdate(); ps.close(); ps = oracleConnection.prepareStatement( "select blobfield from test where id = ? for update"); ps.setInt(1, 100); OracleResultSet rs = (OracleResultSet) ps.executeQuery(); if (rs.next()) { BLOB blob = (BLOB) rs.getBLOB(1); OutputStream outputStream = blob.setBinaryStream(0L); InputStream inputStream = new ByteArrayInputStream(testArray); byte[] buffer = new byte[blob.getBufferSize()]; int byteread = 0; while ((byteread = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, byteread); } outputStream.close(); inputStream.close(); }
// ----------------------------------------------------------------------------- // BLOBFileExample.java // ----------------------------------------------------------------------------- /* * ============================================================================= * Copyright (c) 1998-2011 Jeffrey M. Hunter. All rights reserved. * * All source code and material located at the Internet address of * http://www.idevelopment.info is the copyright of Jeffrey M. Hunter and * is protected under copyright laws of the United States. This source code may * not be hosted on any other site without my express, prior, written * permission. Application to host any of the material elsewhere can be made by * contacting me at jhunter@idevelopment.info. * * I have made every effort and taken great care in making sure that the source * code and other content included on my web site is technically accurate, but I * disclaim any and all responsibility for any loss, damage or destruction of * data or any other property which may arise from relying on it. I will in no * case be liable for any monetary damages arising from such loss, damage or * destruction. * * As with any code, ensure to test this code in a development environment * before attempting to run it in production. * ============================================================================= */ import java.sql.*; import java.io.*; import java.util.*; // Needed since we will be using Oracle's BLOB, part of Oracle's JDBC extended // classes. Keep in mind that we could have included Java's JDBC interfaces // java.sql.Blob which Oracle does implement. The oracle.sql.BLOB class // provided by Oracle does offer better performance and functionality. import oracle.sql.*; // Needed for Oracle JDBC Extended Classes import oracle.jdbc.*; /** * ----------------------------------------------------------------------------- * Used to test the functionality of how to load and unload binary data from an * Oracle BLOB. * * This example uses an Oracle table with the following definition: * * CREATE TABLE test_blob ( * id NUMBER(15) * , image_name VARCHAR2(1000) * , image BLOB * , timestamp DATE * ); * ----------------------------------------------------------------------------- * @version 1.0 * @author Jeffrey M. Hunter (jhunter@idevelopment.info) * @author http://www.idevelopment.info * ----------------------------------------------------------------------------- */ public class BLOBFileExample { private String inputBinaryFileName = null; private File inputBinaryFile = null; private String outputBinaryFileName1 = null; private File outputBinaryFile1 = null; private String outputBinaryFileName2 = null; private File outputBinaryFile2 = null; private String dbUser = "SCOTT"; private String dbPassword = "TIGER"; private Connection conn = null; /** * Default constructor used to create this object. Responsible for setting * this object's creation date, as well as incrementing the number instances * of this object. * @param args Array of string arguments passed in from the command-line. * @throws java.io.IOException */ public BLOBFileExample(String[] args) throws IOException { inputBinaryFileName = args[0]; inputBinaryFile = new File(inputBinaryFileName); if (!inputBinaryFile.exists()) { throw new IOException("File not found. " + inputBinaryFileName); } outputBinaryFileName1 = inputBinaryFileName + ".getBytes.out"; outputBinaryFileName2 = inputBinaryFileName + ".Streams.out"; } /** * Obtain a connection to the Oracle database. * @throws java.sql.SQLException */ public void openOracleConnection() throws SQLException , IllegalAccessException , InstantiationException , ClassNotFoundException { String driver_class = "oracle.jdbc.driver.OracleDriver"; String connectionURL = null; try { Class.forName (driver_class).newInstance(); connectionURL = "jdbc:oracle:thin:@melody:1521:JEFFDB"; conn = DriverManager.getConnection(connectionURL, dbUser, dbPassword); conn.setAutoCommit(false); System.out.println("Connected.\n"); } catch (IllegalAccessException e) { System.out.println("Illegal Access Exception: (Open Connection)."); e.printStackTrace(); throw e; } catch (InstantiationException e) { System.out.println("Instantiation Exception: (Open Connection)."); e.printStackTrace(); throw e; } catch (ClassNotFoundException e) { System.out.println("Class Not Found Exception: (Open Connection)."); e.printStackTrace(); throw e; } catch (SQLException e) { System.out.println("Caught SQL Exception: (Open Connection)."); e.printStackTrace(); throw e; } } /** * Close Oracle database connection. * @throws java.sql.SQLException */ public void closeOracleConnection() throws SQLException { try { conn.close(); System.out.println("Disconnected.\n"); } catch (SQLException e) { System.out.println("Caught SQL Exception: (Closing Connection)."); e.printStackTrace(); if (conn != null) { try { conn.rollback(); } catch (SQLException e2) { System.out.println("Caught SQL (Rollback Failed) Exception."); e2.printStackTrace(); } } throw e; } } /** * Method used to print program usage to the console. */ static public void usage() { System.out.println("\nUsage: java BLOBFileExample \"Binary File Name\"\n"); } /** * Validate command-line arguments to this program. * @param args Array of string arguments passed in from the command-line. * @return Boolean - value of true if correct arguments, false otherwise. */ static public boolean checkArguments(String[] args) { if (args.length == 1) { return true; } else { return false; } } /** * Override the Object toString method. Used to print a version of this * object to the console. * @return String - String to be returned by this object. */ public String toString() { String retValue; retValue = "Input File : " + inputBinaryFileName + "\n" + "Output File (1) : " + outputBinaryFileName1 + "\n" + "Output File (2) : " + outputBinaryFileName2 + "\n" + "Database User : " + dbUser; return retValue; } /** * Method used to write binary data contained in a file to an Oracle BLOB * column. The method used to write the data to the BLOB uses the putBytes() * method. This is one of two types of methods used to write binary data to * a BLOB column. The other method uses Streams. * * @throws java.io.IOException * @throws java.sql.SQLException */ public void writeBLOBPut() throws IOException, SQLException { FileInputStream inputFileInputStream = null; String sqlText = null; Statement stmt = null; ResultSet rset = null; BLOB image = null; int chunkSize; byte[] binaryBuffer; long position; int bytesRead = 0; int bytesWritten = 0; int totbytesRead = 0; int totbytesWritten = 0; try { stmt = conn.createStatement(); inputBinaryFile = new File(inputBinaryFileName); inputFileInputStream = new FileInputStream(inputBinaryFile); sqlText = "INSERT INTO test_blob (id, image_name, image, timestamp) " + " VALUES(1, '" + inputBinaryFile.getName() + "', EMPTY_BLOB(), SYSDATE)"; stmt.executeUpdate(sqlText); sqlText = "SELECT image " + "FROM test_blob " + "WHERE id = 1 " + "FOR UPDATE"; rset = stmt.executeQuery(sqlText); rset.next(); image = ((OracleResultSet) rset).getBLOB("image"); chunkSize = image.getChunkSize(); binaryBuffer = new byte[chunkSize]; position = 1; while ((bytesRead = inputFileInputStream.read(binaryBuffer)) != -1) { bytesWritten = image.putBytes(position, binaryBuffer, bytesRead); position += bytesRead; totbytesRead += bytesRead; totbytesWritten += bytesWritten; } inputFileInputStream.close(); conn.commit(); rset.close(); stmt.close(); System.out.println( "==========================================================\n" + " PUT METHOD\n" + "==========================================================\n" + "Wrote file " + inputBinaryFile.getName() + " to BLOB column.\n" + totbytesRead + " bytes read.\n" + totbytesWritten + " bytes written.\n" ); } catch (IOException e) { System.out.println("Caught I/O Exception: (Write BLOB value - Put Method)."); e.printStackTrace(); throw e; } catch (SQLException e) { System.out.println("Caught SQL Exception: (Write BLOB value - Put Method)."); System.out.println("SQL:\n" + sqlText); e.printStackTrace(); throw e; } } /** * Method used to write the contents (data) from an Oracle BLOB column to * an O/S file. This method uses one of two ways to get data from the BLOB * column - namely the getBytes() method. The other way to read data from an * Oracle BLOB column is to use Streams. * * @throws java.io.IOException * @throws java.sql.SQLException */ public void readBLOBToFileGet() throws IOException, SQLException { FileOutputStream outputFileOutputStream = null; String sqlText = null; Statement stmt = null; ResultSet rset = null; BLOB image = null; long blobLength; long position; int chunkSize; byte[] binaryBuffer; int bytesRead = 0; int bytesWritten = 0; int totbytesRead = 0; int totbytesWritten = 0; try { stmt = conn.createStatement(); outputBinaryFile1 = new File(outputBinaryFileName1); outputFileOutputStream = new FileOutputStream(outputBinaryFile1); sqlText = "SELECT image " + "FROM test_blob " + "WHERE id = 1 " + "FOR UPDATE"; rset = stmt.executeQuery(sqlText); rset.next(); image = ((OracleResultSet) rset).getBLOB("image"); blobLength = image.length(); chunkSize = image.getChunkSize(); binaryBuffer = new byte[chunkSize]; for (position = 1; position <= blobLength; position += chunkSize) { // Loop through while reading a chunk of data from the BLOB // column using the getBytes() method. This data will be stored // in a temporary buffer that will be written to disk. bytesRead = image.getBytes(position, chunkSize, binaryBuffer); // Now write the buffer to disk. outputFileOutputStream.write(binaryBuffer, 0, bytesRead); totbytesRead += bytesRead; totbytesWritten += bytesRead; } outputFileOutputStream.close(); conn.commit(); rset.close(); stmt.close(); System.out.println( "==========================================================\n" + " GET METHOD\n" + "==========================================================\n" + "Wrote BLOB column data to file " + outputBinaryFile1.getName() + ".\n" + totbytesRead + " bytes read.\n" + totbytesWritten + " bytes written.\n" ); } catch (IOException e) { System.out.println("Caught I/O Exception: (Write BLOB value to file - Get Method)."); e.printStackTrace(); throw e; } catch (SQLException e) { System.out.println("Caught SQL Exception: (Write BLOB value to file - Get Method)."); System.out.println("SQL:\n" + sqlText); e.printStackTrace(); throw e; } } /** * Method used to write binary data contained in a file to an Oracle BLOB * column. The method used to write the data to the BLOB uses Streams. * This is one of two types of methods used to write binary data to * a BLOB column. The other method uses the putBytes() method. * * @throws java.io.IOException * @throws java.sql.SQLException */ public void writeBLOBStream() throws IOException, SQLException { FileInputStream inputFileInputStream = null; OutputStream blobOutputStream = null; String sqlText = null; Statement stmt = null; ResultSet rset = null; BLOB image = null; int bufferSize; byte[] byteBuffer; int bytesRead = 0; int bytesWritten = 0; int totBytesRead = 0; int totBytesWritten = 0; try { stmt = conn.createStatement(); inputBinaryFile = new File(inputBinaryFileName); inputFileInputStream = new FileInputStream(inputBinaryFile); sqlText = "INSERT INTO test_blob (id, image_name, image, timestamp) " + " VALUES(2, '" + inputBinaryFile.getName() + "', EMPTY_BLOB(), SYSDATE)"; stmt.executeUpdate(sqlText); sqlText = "SELECT image " + "FROM test_blob " + "WHERE id = 2 " + "FOR UPDATE"; rset = stmt.executeQuery(sqlText); rset.next(); image = ((OracleResultSet) rset).getBLOB("image"); bufferSize = image.getBufferSize(); // Notice that we are using an array of bytes. This is required // since we will be streaming the content (to either a CLOB or BLOB) // as a stream of bytes using an OutputStream Object. This requires // that a byte array to be used to temporarily store the contents // that will be sent to the LOB. Note that the use of the byte // array can be used even if we were reading contents from an // ASCII text file that would be sent to a CLOB. byteBuffer = new byte[bufferSize]; blobOutputStream = image.getBinaryOutputStream(); while ((bytesRead = inputFileInputStream.read(byteBuffer)) != -1) { // After reading a buffer from the binary file, write the contents // of the buffer to the output stream using the write() // method. blobOutputStream.write(byteBuffer, 0, bytesRead); totBytesRead += bytesRead; totBytesWritten += bytesRead; } // Keep in mind that we still have the stream open. Once the stream // gets open, you cannot perform any other database operations // until that stream has been closed. This even includes a COMMIT // statement. It is possible to loose data from the stream if this // rule is not followed. If you were to attempt to put the COMMIT in // place before closing the stream, Oracle will raise an // "ORA-22990: LOB locators cannot span transactions" error. inputFileInputStream.close(); blobOutputStream.close(); conn.commit(); rset.close(); stmt.close(); System.out.println( "==========================================================\n" + " OUTPUT STREAMS METHOD\n" + "==========================================================\n" + "Wrote file " + inputBinaryFile.getName() + " to BLOB column.\n" + totBytesRead + " bytes read.\n" + totBytesWritten + " bytes written.\n" ); } catch (IOException e) { System.out.println("Caught I/O Exception: (Write BLOB value - Stream Method)."); e.printStackTrace(); throw e; } catch (SQLException e) { System.out.println("Caught SQL Exception: (Write BLOB value - Stream Method)."); System.out.println("SQL:\n" + sqlText); e.printStackTrace(); throw e; } } /** * Method used to write the contents (data) from an Oracle BLOB column to * an O/S file. This method uses one of two ways to get data from the BLOB * column - namely using Streams. The other way to read data from an * Oracle BLOB column is to use getBytes() method. * * @throws java.io.IOException * @throws java.sql.SQLException */ public void readBLOBToFileStream() throws IOException, SQLException { FileOutputStream outputFileOutputStream = null; InputStream blobInputStream = null; String sqlText = null; Statement stmt = null; ResultSet rset = null; BLOB image = null; int chunkSize; byte[] binaryBuffer; int bytesRead = 0; int bytesWritten = 0; int totBytesRead = 0; int totBytesWritten = 0; try { stmt = conn.createStatement(); outputBinaryFile2 = new File(outputBinaryFileName2); outputFileOutputStream = new FileOutputStream(outputBinaryFile2); sqlText = "SELECT image " + "FROM test_blob " + "WHERE id = 2 " + "FOR UPDATE"; rset = stmt.executeQuery(sqlText); rset.next(); image = ((OracleResultSet) rset).getBLOB("image"); // Will use a Java InputStream object to read data from a BLOB (can // also be used for a CLOB) object. In this example, we will use an // InputStream to read data from a BLOB. blobInputStream = image.getBinaryStream(); chunkSize = image.getChunkSize(); binaryBuffer = new byte[chunkSize]; while ((bytesRead = blobInputStream.read(binaryBuffer)) != -1) { // Loop through while reading a chunk of data from the BLOB // column using an InputStream. This data will be stored // in a temporary buffer that will be written to disk. outputFileOutputStream.write(binaryBuffer, 0, bytesRead); totBytesRead += bytesRead; totBytesWritten += bytesRead; } outputFileOutputStream.close(); blobInputStream.close(); conn.commit(); rset.close(); stmt.close(); System.out.println( "==========================================================\n" + " INPUT STREAMS METHOD\n" + "==========================================================\n" + "Wrote BLOB column data to file " + outputBinaryFile2.getName() + ".\n" + totBytesRead + " bytes read.\n" + totBytesWritten + " bytes written.\n" ); } catch (IOException e) { System.out.println("Caught I/O Exception: (Write BLOB value to file - Streams Method)."); e.printStackTrace(); throw e; } catch (SQLException e) { System.out.println("Caught SQL Exception: (Write BLOB value to file - Streams Method)."); System.out.println("SQL:\n" + sqlText); e.printStackTrace(); throw e; } } /** * Sole entry point to the class and application. * @param args Array of string arguments passed in from the command-line. */ public static void main(String[] args) { BLOBFileExample blobFileExample = null; if (checkArguments(args)) { try { blobFileExample = new BLOBFileExample(args); System.out.println("\n" + blobFileExample + "\n"); blobFileExample.openOracleConnection(); blobFileExample.writeBLOBPut(); blobFileExample.readBLOBToFileGet(); blobFileExample.writeBLOBStream(); blobFileExample.readBLOBToFileStream(); blobFileExample.closeOracleConnection(); } catch (IllegalAccessException e) { System.out.println("Caught Illegal Accecss Exception. Exiting."); e.printStackTrace(); System.exit(1); } catch (InstantiationException e) { System.out.println("Instantiation Exception. Exiting."); e.printStackTrace(); System.exit(1); } catch (ClassNotFoundException e) { System.out.println("Class Not Found Exception. Exiting."); e.printStackTrace(); System.exit(1); } catch (SQLException e) { System.out.println("Caught SQL Exception. Exiting."); e.printStackTrace(); System.exit(1); } catch (IOException e) { System.out.println("Caught I/O Exception. Exiting."); e.printStackTrace(); System.exit(1); } } else { System.out.println("\nERROR: Invalid arguments."); usage(); System.exit(1); } System.exit(0); } }
CLOB
http://www.idevelopment.info/data/Programming/java/jdbc/LOBS/CLOBFileExample.java
发表评论
-
java 文件统计
2013-02-24 22:45 1349import java.io.BufferedWriter ... -
文件改名
2013-01-06 17:40 1576import java.io.File; impor ... -
excel java concat
2012-12-20 22:05 1345public class ExcelConcat ... -
split xml
2012-04-16 23:22 854before: <?xml version=&quo ... -
证明一下Filelock是进程级别的
2012-04-11 01:17 1774import java.io.File; import ... -
多线程写一个文件,回字的3个写法
2012-04-11 00:55 1758import java.io.BufferedWriter ...
相关推荐
在Java编程中,Oracle数据库中的BLOB(Binary Large Object)类型用于存储大量的二进制数据,如图片、视频或文档。这篇博客文章“JAVA操作Oracle blob类型”将深入探讨如何在Java应用程序中有效地管理和操作Oracle...
在 DAO 中,我们需要使用 PreparedStatement 来执行 SQL 语句,並insert一个空 BLOB 对象,然后 Update 这个空对象。 在 Struts 项目中,我们可以使用以下代码来实现大对象的上传: ```java // 新增 if (action...
### Java存取Oracle Blob 字段详解 #### 一、Blob 和 BLOB 的区别 在处理 Oracle 数据库中的二进制大型对象(Binary Large Object,简称 Blob)时,开发者经常会遇到两个相似但不同的概念:`java.sql.Blob` 和 `...
String sql = "INSERT INTO " + tableName + " (BLOB_COLUMN) VALUES (?)"; jdbcTemplate.update(sql, new Object[]{blobData}); } public Blob retrieveBlob(String tableName, Long id) { String sql = ...
- **插入空BLOB**:通过执行SQL语句`insert into javatest(name,content) values(?,empty_blob())`,这里使用`empty_blob()`函数创建一个空的BLOB实例。 - **获取BLOB的游标**:使用`SELECT content FROM javatest...
其次,使用Statement.executeUpdate()方法执行INSERT语句,插入一个空对象empty_blob()。然后,使用ResultSet.executeQuery()方法执行SELECT语句,锁定数据行进行更新,注意“for update”语句。 在获取java.sql....
INSERT INTO BLOB_FIELD (ID, TAB_NAME, TAB_PKID_VALUE, BLOB_COL_NAME, BLOB_COL_VALUE) VALUES (#{id}, #{tabName}, #{tabPkidValue}, #{blobColName}, #{blobColValue}) </insert> <!-- 更新BlobField --> ...
java.sql.Blob blob = rs.getBlob("BLOBATTR"); InputStream inStream = blob.getBinaryStream(); byte[] data = new byte[inStream.available()]; inStream.read(data); inStream.close(); } inStream.close...
String sql = "INSERT INTO OM_CM_MMSNEWS (elementid, title, content) VALUES (?, ?, EMPTY_BLOB())"; // 执行插入操作 PreparedStatement ps = cn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS); ...
- 创建SQL语句,例如:`"insert into BLOB_IMG values(103, empty_blob())";` - 使用`Statement`或`PreparedStatement`执行该SQL语句。 - **读取文件并写入BLOB对象:** - 获取待插入的文件的输入流(`...
在上面的代码中,我们使用JDBC连接数据库,并执行INSERT、SELECT和UPDATE语句来操作BLOB对象。 BLOB数据类型 BLOB是一种二进制大对象,是数据库中的一种数据类型,用于存储大规模的二进制数据,如图片、音频、...
INSERT INTO xxx_table (A, B, C) VALUES (empty_blob(), 'xxx', 'yyyy'); ``` 2. **更新BLOB数据**: - 设置`Connection`的自动提交为`false`,避免出现`fetch out of sequence`异常。 - 在查询BLOB数据之前...
在Java开发中,有时我们需要存储二进制大数据,如图片、视频或文档,这时Oracle数据库中的Blob类型就显得尤为重要。Blob(Binary Large Object)是Oracle用来存储大对象数据的类型,它可以高效地处理大量的二进制...
例如,`INSERT INTO table (blob_column) VALUES (BLOB_CONTENT)`用于插入Blob数据,`SELECT blob_column FROM table`用于查询,`UPDATE table SET blob_column = ? WHERE condition`用于更新,`DELETE FROM table ...
MySQL中的BLOB类型是用于存储...总结来说,MySQL的BLOB类型是为了解决大数据存储问题,而PreparedStatement是Java中用来安全高效地操作BLOB字段的工具。正确理解和使用这些技术,对于处理大量的二进制数据至关重要。
这通常涉及到一个带有Blob参数的SQL语句,如`INSERT INTO table (id, blob_column) VALUES (?, ?)`,然后使用`session.save()`或`session.update()`方法。 2. **下载过程**: - 用户触发下载请求,Struts2拦截器...
在Java应用程序中,操作BLOB字段上传附件涉及到多个步骤,主要包括读取、写入和更新BLOB数据。以下是对这些步骤的详细解释: 1. **新建记录并插入BLOB数据** - 首先,创建新记录时,利用Oracle提供的`empty_blob()...
3. **插入空BLOB**:使用`PreparedStatement`的`executeUpdate()`方法执行SQL插入语句,如`"insert into javatest(name,content) values(?,empty_blob())"`。这里的`empty_blob()`是Oracle提供的函数,用于在新记录...