java讀取圖片并轉(zhuǎn)化為二進(jìn)制字符串的實(shí)現(xiàn)方法
本例子的目的在于測試往oracle數(shù)據(jù)庫中插入blob字段
public static String getImgStr(String imgFile){
//將圖片文件轉(zhuǎn)化為字節(jié)數(shù)組字符串,并對其進(jìn)行Base64編碼處理
InputStream in = null;
byte[] data = null;
//讀取圖片字節(jié)數(shù)組
try
{
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.read(data);
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
return new String(Base64.encodeBase64(data));
}
--
利用以上的思路寫的一個(gè)測試
public class ReadImageTest {
public static void main(String[] args) throws IOException {
FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png"));
String picStr="";
byte[] read = null;
int len = 0;
read= new byte[fis.available()];
fis.read(read);
String baseStr= Base64.getEncoder().encodeToString(read);
//System.out.println( baseStr);
byte[] op= Base64.getDecoder().decode(baseStr);
// System.out.println(new String(op));
FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\1.jpg"));
fos.write(op,0,op.length );
fos.flush();
fos.close();
}
}
但是available()有一定的限制。
為了穩(wěn)妥,嚴(yán)重建議采取以下方式:
public static void imageToBase64Str() throws IOException{
FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png"));
byte[] read = new byte[1024];
int len = 0;
List<byte[]> blist=new ArrayList<byte[]>();
int ttllen=0;
while((len = fis.read(read))!= -1){
byte[] dst=new byte[len];
System.arraycopy(read, 0, dst, 0, len);
ttllen+=len;
blist.add(dst);
}
fis.close();
byte[] dstByte=new byte[ttllen];
int pos=0;
for (int i=0;i<blist.size();i++){
if (i==0){
pos=0;
}
else{
pos+=blist.get(i-1).length;
}
System.arraycopy(blist.get(i), 0, dstByte, pos, blist.get(i).length);
}
String baseStr= Base64.getEncoder().encodeToString(dstByte);
byte[] op= Base64.getDecoder().decode(baseStr);
FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\2.jpg"));
fos.write(op,0,op.length );
fos.flush();
fos.close();
}
總結(jié)
以上所述是小編給大家介紹的java讀取圖片并轉(zhuǎn)化為二進(jìn)制字符串,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!
相關(guān)文章
Java將一個(gè)正整數(shù)分解質(zhì)因數(shù)的代碼
這篇文章主要介紹了將一個(gè)正整數(shù)分解質(zhì)因數(shù)。例如:輸入90,打印出90=2*3*3*5,需要的朋友可以參考下2017-02-02
Java 函數(shù)式編程要點(diǎn)總結(jié)
函數(shù)式編程并不是Java新提出的概念,其與指令編程相比,強(qiáng)調(diào)函數(shù)的計(jì)算比指令的計(jì)算更重要;與過程化編程相比,其中函數(shù)的計(jì)算可以隨時(shí)調(diào)用。Java8新引入函數(shù)式編程方式,大大的提高了編碼效率。本文將對涉及的對象等進(jìn)行統(tǒng)一的學(xué)習(xí)及記錄。2021-06-06
一個(gè)簡單的SpringBoot項(xiàng)目快速搭建詳細(xì)步驟
Spring Boot是由Pivotal團(tuán)隊(duì)提供的全新框架,其設(shè)計(jì)目的是用來簡化新Spring應(yīng)用的初始搭建以及開發(fā)過程,下面這篇文章主要給大家介紹了一個(gè)簡單的SpringBoot項(xiàng)目快速搭建詳細(xì)步驟,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2022-08-08
SpringBoot整合Echarts實(shí)現(xiàn)用戶人數(shù)和性別展示功能(詳細(xì)步驟)
這篇文章主要介紹了SpringBoot整合Echarts實(shí)現(xiàn)用戶人數(shù)和性別展示,通過數(shù)據(jù)庫設(shè)計(jì)、實(shí)現(xiàn)數(shù)據(jù)訪問層、業(yè)務(wù)邏輯層和控制層的代碼編寫,以及前端頁面的開發(fā),本文詳細(xì)地介紹了SpringBoot整合Echarts的實(shí)現(xiàn)步驟和代碼,需要的朋友可以參考下2023-05-05
細(xì)數(shù)java for循環(huán)中的那些坑
這篇文章主要介紹了Java for循環(huán)方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-07-07
spring cloud zuul 與 sentinel的結(jié)合使用操作
這篇文章主要介紹了spring cloud zuul 與 sentinel 的結(jié)合使用操作,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-06-06

