在java中将图像作为文本发送

发布于 2024-11-17 05:54:46 字数 40 浏览 1 评论 0原文

是否可以将图像读取为文本并通过网络发送?是的,那么我们该怎么做呢?

Is it possible to read image as text and send it over network? Is yes, then how can we do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪异←思 2024-11-24 05:54:46

您可以对图像进行 Base64 编码以生成(文本)字符串。

Apache Commons Codec 有一个 Base64 实现,您可以轻松使用:

import org.apache.commons.codec.binary.Base64;

// Read the byte array from file, DB, etc
byte[] imageByteArray = getImageByteArray();

String base64Image = Base64.encodeBase64String(imageByteArray);

You could base64 encode the image to produce a (text) string.

Apache Commons Codec has a Base64 implementation that you can easily use:

import org.apache.commons.codec.binary.Base64;

// Read the byte array from file, DB, etc
byte[] imageByteArray = getImageByteArray();

String base64Image = Base64.encodeBase64String(imageByteArray);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文