本例子的目的在于测试往oracle数据库中插入blob字段
public static String getImgStr(String imgFile){
//将图片文件转化为字节数组字符串,并对其进行 64编码处理
InputStream in = null;
byte[] data = null;
//读取图片字节数组
try
{
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.read(data);
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
return new String( 64.encode 64(data));
}
--
利用以上的思路写的一个测试
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 Str= 64.getEncoder().encodeToString(read);
//System.out.println( Str);
byte[] op= 64.getDecoder().decode( Str);
// 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()有一定的限制。
为了稳妥,严重建议采取以下方式:
public static void imageTo 64Str() 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 Str= 64.getEncoder().encodeToString(dstByte);
byte[] op= 64.getDecoder().decode( Str);
FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\2.jpg"));
fos.write(op,0,op.length );
fos.flush();
fos.close();
}
总结
以上所述是小编给大家介绍的java读取图片并转化为二进制字符串,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
继续阅读与本文标签相同的文章
上一篇 :
阿里云:公共云成数字经济风向标,激发经济新动能
下一篇 :
计算广告与流处理技术综述
-
云栖大会SaaS加速器专场 | 云粒智慧+宜搭Plus,搭建企业级智能费控平台
2026-05-17栏目: 教程
-
RDS MySQL 5.7三节点企业版重磅发布 企业级业务云上数据库首选
2026-05-17栏目: 教程
-
生活号增长140%,小程序收藏提升4倍,解开“支付后推荐”的运营秘密!
2026-05-17栏目: 教程
-
读懂POLARDB不能错过的18篇深度文章!
2026-05-17栏目: 教程
-
k8s服务实现浅谈
2026-05-17栏目: 教程
