在java中将图像作为文本发送
是否可以将图像读取为文本并通过网络发送?是的,那么我们该怎么做呢?
Is it possible to read image as text and send it over network? Is yes, then how can we do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对图像进行 Base64 编码以生成(文本)字符串。
Apache Commons Codec 有一个 Base64 实现,您可以轻松使用:
You could base64 encode the image to produce a (text) string.
Apache Commons Codec has a Base64 implementation that you can easily use: