JDBC ASCII流 和 二進制數(shù)據(jù)
jdbc ascii流 和 二進制數(shù)據(jù)
preparedstatement 對象可以使用輸入和輸出流來提供參數(shù)數(shù)據(jù)。能夠?qū)⒄麄€文件放入可以容納大值的數(shù)據(jù)庫列,例如 clob 和 blob 數(shù)據(jù)類型。
有以下方法可用于流式傳輸數(shù)據(jù):
- setasciistream() :此方法用于提供大的ascii值。
- setcharacterstream() :此方法用于提供較大的unicode值。
- setbinarystream() :此方法用于提供較大的二進制值。
setxxxstream() 方法除了參數(shù)占位符之外還需要額外的參數(shù)和文件大小。此參數(shù)通知驅(qū)動程序使用流向數(shù)據(jù)庫發(fā)送多少數(shù)據(jù)。
1. ascii流 使用范例
考慮要將xml文件 xml_data.xml 上傳到數(shù)據(jù)庫表中。下面是xml文件的內(nèi)容 -
<?xml version="1.0"?> <employee> <id>125</id> <first>max</first> <last>su</last> <salary>18000</salary> <dob>18-08-1978</dob> <employee>
將此xml文件保存在要運行此示例的同一目錄中。
此示例將在數(shù)據(jù)庫創(chuàng)建一個表:xml_data,然后將文件 xml_data.xml 上傳到此表中。
復(fù)制以下示例代碼,并保存在文件:streamingdata.java 中,編譯并運行如下 -
// import required packages import java.sql.*; import java.io.*; import java.util.*; public class streamingdata { // jdbc driver name and database url static final string jdbc_driver = "com.mysql.jdbc.driver"; static final string db_url = "jdbc:mysql://localhost/emp"; // database credentials static final string user = "root"; static final string pass = "123456"; public static void main(string[] args) { connection conn = null; preparedstatement pstmt = null; statement stmt = null; resultset rs = null; try{ // register jdbc driver class.forname("com.mysql.jdbc.driver"); // open a connection system.out.println("connecting to database..."); conn = drivermanager.getconnection(db_url,user,pass); //create a statement object and build table stmt = conn.createstatement(); createxmltable(stmt); //open a fileinputstream file f = new file("xml_data.xml"); long filelength = f.length(); fileinputstream fis = new fileinputstream(f); //create preparedstatement and stream data string sql = "insert into xml_data values (?,?)"; pstmt = conn.preparestatement(sql); pstmt.setint(1,125); pstmt.setasciistream(2,fis,(int)filelength); pstmt.execute(); //close input stream fis.close(); // do a query to get the row sql = "select data from xml_data where id=125"; rs = stmt.executequery (sql); // get the first row if (rs.next ()){ //retrieve data from input stream inputstream xmlinputstream = rs.getasciistream (1); int c; bytearrayoutputstream bos = new bytearrayoutputstream(); while (( c = xmlinputstream.read ()) != -1) bos.write(c); //print results system.out.println(bos.tostring()); } // clean-up environment rs.close(); stmt.close(); pstmt.close(); conn.close(); }catch(sqlexception se){ //handle errors for jdbc se.printstacktrace(); }catch(exception e){ //handle errors for class.forname e.printstacktrace(); }finally{ //finally block used to close resources try{ if(stmt!=null) stmt.close(); }catch(sqlexception se2){ }// nothing we can do try{ if(pstmt!=null) pstmt.close(); }catch(sqlexception se2){ }// nothing we can do try{ if(conn!=null) conn.close(); }catch(sqlexception se){ se.printstacktrace(); }//end finally try }//end try system.out.println("goodbye!"); }//end main public static void createxmltable(statement stmt) throws sqlexception{ system.out.println("creating xml_data table..." ); //create sql statement string streamingdatasql = "create table xml_data " + "(id integer, data long)"; //drop table first if it exists. try{ stmt.executeupdate("drop table xml_data"); }catch(sqlexception se){ }// do nothing //build table. stmt.executeupdate(streamingdatasql); }//end createxmltable }//end jdbcexample
2. 編譯運行
編譯上面代碼,如下:
f:\worksp\jdbc>javac -djava.ext.dirs=f:\worksp\jdbc\libs streamingdata.java
執(zhí)行上面編譯后的代碼,得到以下結(jié)果:
f:\worksp\jdbc>java -djava.ext.dirs=f:\worksp\jdbc\libs streamingdata connecting to database... thu jun 01 21:42:00 cst 2017 warn: establishing ssl connection without server's identity verification is not recommended. according to mysql 5.5.45+, 5.6.26+ and 5.7.6+ requirements ssl connection must be established by default if explicit option isn't set. for compliance with existing applications not using ssl the verifyservercertificate property is set to 'false'. you need either to explicitly disable ssl by setting usessl=false, or set usessl=true and provide truststore for server certificate verification. creating xml_data table... <?xml version="1.0"?> <employee> <id>125</id> <first>max</first> <last>su</last> <salary>18000</salary> <dob>18-08-1978</dob> <employee> goodbye! f:\worksp\jdbc>
相關(guān)文章
- JDBC 教程
- JDBC 驅(qū)動類型
- JDBC 連接數(shù)據(jù)庫范例
- JDBC 連接數(shù)據(jù)庫步驟
- JDBC Statement, PreparedStatement 和 CallableStatement
- JDBC ResultSet 結(jié)果集
- JDBC Resultset 結(jié)果集范例
- JDBC 事務(wù)保存點范例
- Scala 教程
- Scala 簡介
- Scala 類和對象
- Scala 文件 I/O
- Spring 教程
- Spring 模塊
- Spring 依賴注入
- Spring 自動裝配
- Spring MVC教程
- Spring MVC表單標簽庫
- Spring security