講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文_第1頁
講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文_第2頁
講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文_第3頁
講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文_第4頁
講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文_第5頁
已閱讀5頁,還剩6頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

講解Java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的方法范文本文實例講述了java從數(shù)據(jù)庫中讀取Blob對象圖片并顯示的辦法。分享給大家供大家參考。具體實現(xiàn)辦法如下:

第一種辦法:

大致辦法就是,從數(shù)據(jù)庫中讀出Blob的流來,寫到頁面中去:

復制代碼代碼如下:Connectionconn=onnection();

Stringsql="SELECTpictureFROMteacherWHEREid=1";

PreparedStatementps=null;

ResultSetrs=null;

InputStreamis=null;

OutputStreamos=null;

try{

ps=areStatement(sql);

rs=uteQuery();

if(()){

is=inaryStream(1);

}

ontentType("text/html");

os=utputStream();

intnum;

bytebuf[]=newbyte[1024];

while((num=(buf))!=-1){

e(buf,0,num);

}

}catch(SQLExceptione){

tStackTrace();

}

try{

e();

e();

e();

e();

}catch(SQLExceptione){

tStackTrace();

}

在頁面中:

復制代碼代碼如下:Stringpath=ontextPath();

StringbasePath=cheme()+"://"+erverName()+":"+erverPort()+path+"/";

%>

搞定。

第二種辦法:

整個流程分為四步,連接oracle數(shù)據(jù)庫->讀取blob圖片字段->對圖片進行縮放->把圖片展示在jsp頁面上。

復制代碼代碼如下:import.*;

import.*;

importeIO;

importeredImage;

importneTransformOp;

importneTransform;

publicclassOracleQueryBean{

privatefinalStringoracleDriverName="leDriver";

privateConnectionmyConnection=null;

privateStringstrTabName;

privateStringstrIDName;

privateStringstrImgName;

publicOracleQueryBean(){

try{

ame(oracleDriverName);

}catch(ClassNotFoundExceptionex){

tln("加載jdbc驅(qū)動失敗,原因:"+essage());

}

}

publicConnectiongetConnection(){

try{

//用戶名+密碼;下列使用的Test就是Oracle里的表空間

//從配置文件中讀取數(shù)據(jù)庫信息

GetParaoGetPara=newGetPara();

StringstrIP=ara("serverip");

StringstrPort=ara("port");

StringstrDBName=ara("dbname");

StringstrUser=ara("user");

StringstrPassword=ara("password");

abName=ara("tablename");

DName=ara("imgidname");

mgName=ara("imgname");

StringoracleUrlToConnect="jdbc:oracle:thin:@"+strIP+":"+strPort+":"+strDBName;

nnection=onnection(oracleUrlToConnect,strUser,strPassword);

}catch(Exceptionex){

tln("Cannotgetconnection:"+essage());

tln("請檢測配置文件中的.數(shù)據(jù)庫信息是否正確.");

}

returnnnection;

}

}

2.讀取blob字段

在OracleQueryBean類中增加一個函數(shù),來進行讀取,具體代碼如下:

復制代碼代碼如下:publicbyte[]GetImgByteById(StringstrID,intw,inth){

//tln("Getimgdatawhichidis"+nID);

if(myConnection==null)

onnection();

byte[]data=null;

try{

Statementstmt=teStatement();

ResultSetmyResultSet=uteQuery("select"+DName+"from"+abName+"where"+DName+"="+strID);

StringBuffermyStringBuffer=newStringBuffer();

if(()){

blob=lob(mgName);

InputStreaminStream=inaryStream();

try{

longnLen=th();

intnSize=(int)nLen;

//tln("imgdatasizeis:"+nSize);

data=newbyte[nSize];

(data);

e();

}catch(IOExceptione){

tln("獲取圖片數(shù)據(jù)失敗,原因:"+essage());

}

data=ChangeImgSize(data,w,h);

}

tln(ring());

it();

e();

}catch(SQLExceptionex){

tln(essage());

}

returndata;

}

3.縮放圖片

因為圖片的大小可能不一致,但是在頁面中輸出的大小需要統(tǒng)一,所以需要

在OracleQueryBean類中增加一個函數(shù),來進行縮放,具體代碼如下:

復制代碼代碼如下:privatebyte[]ChangeImgSize(byte[]data,intnw,intnh){

byte[]newdata=null;

try{

BufferedImagebis=(newByteArrayInputStream(data));

intw=idth();

inth=eight();

doublesx=(double)nw/w;

doublesy=(double)nh/h;

AffineTransformtransform=newAffineTransform();

oScale(sx,sy);

AffineTransformOpato=newAffineTransformOp(transform,null);

//原始顏色

BufferedImagebid=newBufferedImage(nw,nh,_3BYTE_BGR);

er(bis,bid);

//轉(zhuǎn)換成byte字節(jié)

ByteArrayOutputStreambaos=newByteArrayOutputStream();

e(bid,"jpeg",baos);

newdata=teArray();

}catch(IOExceptione){

tStackTrace();

}

returnnewdata;

}

4.展示在頁面

頁面使用OracleQueryBean來根據(jù)用戶提供的圖片id進行查詢,在讀取并進行縮放后,通過jsp頁面進行展示,具體代碼如下:

復制代碼代碼如下:

response.setContentType("image/jpeg");

//圖片在數(shù)據(jù)庫中的ID

StringstrID=arameter("id");

//要縮略或放大圖片的寬度

StringstrWidth=arameter("w");

//要縮略或放大圖片的高度

StringstrHeight=arameter("h");

byte[]data=null;

if(strID!=null){

intnWith=eInt(strWidth);

intnHeight=eInt(strHeight);

//獲取圖片的byte數(shù)據(jù)

data=mgByteById(strID,nWith,nHeight);

ServletOutputStreamop=utputStream();

e(data,0,th);

e();

op=null;

hBuffer();

//去除輸出流,避免釋放時被捕獲異常

r();

out=Body();

}

%>

5.OracleQueryBean查詢類的整體代碼

文件代碼如下所示:

復制代碼代碼如下:import.*;

import.*;

importeIO;

importeredImage;

importneTransformOp;

importneTransform;

publicclassOracleQueryBean{

privatefinalStringoracleDriverName="leDriver";

privateConnectionmyConnection=null;

privateStringstrTabName;

privateStringstrIDName;

privateStringstrImgName;

publicOracleQueryBean(){

try{

ame(oracleDriverName);

}catch(ClassNotFoundExceptionex){

tln("加載jdbc驅(qū)動失敗,原因:"+essage());

}

}

publicConnectiongetConnection(){

try{

//用戶名+密碼;下列使用的Test就是Oracle里的表空間

//從配置文件中讀取數(shù)據(jù)庫信息

GetParaoGetPara=newGetPara();

StringstrIP=ara("serverip");

StringstrPort=ara("port");

StringstrDBName=ara("dbname");

StringstrUser=ara("user");

StringstrPassword=ara("password");

abName=ara("tablename");

DName=ara("imgidname");

mgName=ara("imgname");

StringoracleUrlToConnect="jdbc:oracle:thin:@"+strIP+":"+strPort+":"+strDBName;

nnection=onnection(oracleUrlToConnect,strUser,strPassword);

}catch(Exceptionex){

tln("Cannotgetconnection:"+essage());

tln("請檢測配置文件中的數(shù)據(jù)庫信息是否正確.");

}

returnnnection;

}

publicbyte[]GetImgByteById(StringstrID,intw,inth){

//tln("Getimgdatawhichidis"+nID);

if(myConnection==null)

onnection();

byte[]data=null;

try{

Statementstmt=teStatement();

ResultSetmyResultSet=uteQuery("select"+DName+"from"+abName+"where"+DName+"="+strID);

StringBuffermyStringBuffer=newStringBuffer();

if(()){

blob=lob(mgName);

InputStreaminStream=inaryStream();

try{

longnLen=th();

intnSize=(int)nLen;

//tln("imgdatasizeis:"+nSize);

data=newbyte[nSize];

(data);

e();

}catch(IOExceptione){

tln("獲取圖片數(shù)據(jù)失敗,原因:"+essage());

}

data=ChangeImgSize(data,w,h);

}

tln(ring());

it();

e();

}catch(SQLExceptionex){

tln(essage());

}

returndata;

}

publicbyte[]GetImgByteById(StringstrID){

//tln("Getimgdatawhichidis"+nID);

if(myConnection==null)

onnection();

byte[]data=null;

try{

Statementstmt=teStatement();

ResultSetmyResultSet=uteQuery("select"+DName+"from"+abName+"where"+DName+"="+strID);

StringBuffermyStringBuffer=newStringBuffer();

if(()){

blob=lob(mgName);

InputStreaminStream=inaryStream();

try{

longnLen=th();

intnSize=(int)nLen;

data=newbyte[nSize];

(data);

e();

}catch(IOExceptione){

tln("獲取圖片數(shù)據(jù)失敗,原因:"+essage());

}

}

tln(ring());

it();

e();

}catch(SQLExceptionex){

tln(essage());

}

returndata;

}

privatebyte[]ChangeImgSize(byte[]data,intnw,intnh){

byte[]newdata=null;

try{

BufferedImagebis=(newByteArrayInputStream(data));

intw=idth();

inth=eight();

doublesx=(double)nw/w;

doublesy=(double)nh/h;

AffineTransformtransform=newAffineTransform();

oScale(sx,sy);

AffineTransformOpato=newAffineTransformOp(transform,null);

//原始顏色

BufferedImagebid=newBufferedImage(nw,nh,_3BYTE_BGR);

er(bis,bid);

//轉(zhuǎn)換成byte字節(jié)

ByteArrayOutputStreambaos=newByteArrayOutputStream();

e(bid,"jpeg",baos);

newdata=teArray();

}catch(IOExceptione){

tStackTrace();

}

returnnewdata;

}

}

下面是我的存儲讀取blob圖片的案例

復制代碼代碼如下:import.*;

import.*;

publicclassInsertPhoto{

publicstaticvoidmain(String[]args)throwsException{

ame("er");

Connectioncon=onnection("jdbc:mysql://);

Filef=newFile("e:/123.jpg");

FileInputStreamfis=newFileInputStream(f);

Stringsql="intophoto(photo,photoName)values(";

PreparedStatementpstmt=areStatement(sql);

inaryStream(1,fis,(int)th());

tring(2,"測試圖片");

uteUpdate();

e();

e();

e();

}

}

復制代碼代碼如下:importeredImage;

importeredInputStream;

importception;

importtStream;

importutStream;

importection;

importerManager;

importltSet;

importxception;

importement;

importeIO;

importServlet;

importServletRequest;

importServletResponse;

importcom.sun.image.codec.jpeg.JPEGCodec;

importcom.sun.image.codec.jpeg.JPEGImageEncoder;

publicclassReadPhotoextendsHttpServlet{

privatestaticfinallongserialVersionUID=1L;

publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse){

if(arameter("id")!=null){

response.setContentType("image/jpeg");

try{

InputStreamis=query_getPhotoImageBlob(eInt(arameter("id")));

if(is!=null){

is=newBufferedInputStream(is);

BufferedImagebi=(is);

OutputStreamos=utputStream();

JPEGImageEncoderencoder=JPEGCodec.createJPEGEncoder(os

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論