如何在 J2ME 中将 byte[] 转换为 base64(以及返回)?
我需要对 byte[] 进行 Base64 编码以将其发送到 http 服务器,并读回编码的 byte[]。然而,j2me 中没有 Base64 编码器/解码器。
我将不胜感激一段代码!
br、佩尔扎
I need to base64 encode a byte[] to send it over to a http server, as well as read an encoded byte[] back. However, there is no Base64 encoder/decoder in j2me.
I would appreciate a piece of code for this!
br, perza
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用这个类:
您可以使用它的编码和解码方法。
我在“数据编码 - Herong 的教程示例”中找到了它。
I use this class:
You can use it's encode and decode methods.
I found it in "Data Encodings - Herong's Tutorial Examples".