Convert InputStream to base64 string(将 InputStream 转换为 base64 字符串)
问题描述
有一种方法可以将 InputStream
转换为 String
,并将其编码为 base64,对吧?
There is a way to convert an InputStream
to a String
, and encode it to base64, right?
在我的函数中,我得到了 InputStream
参数,需要将它插入到我的 Oracle 数据库表中的 BLOB 字段中.
In my function, I get InputStream
parameter, and need to insert it into the BLOB field in my Oracle database table.
有没有办法做到这一点?
Is there a way to do that?
(我的数据库对象包含用于保存图像的字符串字段,但我没有找到任何方法将 InputStream
转换为 base 64 格式的字符串.)
(My database object contains string field to save the image, but I don't find any way to convert the InputStream
to string in base 64 format.)
推荐答案
您可以使用 Base64 API 尝试类似的操作.
You can try something like this using the Base64 API.
InputStream finput = new FileInputStream(file);
byte[] imageBytes = new byte[(int)file.length()];
finput.read(imageBytes, 0, imageBytes.length);
finput.close();
String imageStr = Base64.encodeBase64String(imageBytes);
使用这个:
http://commons.apache.org/proper/commons-codec/archives/1.9/apidocs/org/apache/commons/codec/binary/Base64.html
这篇关于将 InputStream 转换为 base64 字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 InputStream 转换为 base64 字符串
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01