Android:Base64 示例问题
目前我正在使用 kSoap 将数据发布到 C# Web 服务。现在我需要使用 Base64Binary 从我的机器上传图像。我搜索了互联网上的所有内容,但无法找到合适的解决方案。
有一个解决方案 外部 Base64 类 示例,但我对本机解决方案感兴趣,因为 有一个 API来自安卓2.2.
由于我是新手,我自己无法做到。基本上我有一个图像的SD卡文件路径,我想将它们转换成Base64格式来上传。
希望有人可以帮助我或指导我找到正确的文件。
提前致谢。
currently I'm using kSoap to publish data to C# web services. Now I've come to the part where I need to upload images from my machine using Base64Binary. I searched everywehre internet but couldn't come up with a proper solution.
there is a solution with external Base64 class example but I'm interested in native solution as there is a API from Android 2.2.
Since I'm a newbie I couldn't do it myself. Basically I have a sd card file path of images, I want to convert them into Base64 format to upload.
Hope someone can help me or direct me to proper documents.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试这个,使用您指定的链接中的 Base64.java 。
您应该根据您的文件类型更改此
Bitmap.compressFormat.JPEG
语句的扩展名。您可以使用以下代码将 Base 64 字符串解码为图像Please try this, use Base64.java from link you have specified.
You should change extension of this
Bitmap.CompressFormat.JPEG
statement according to your file type. You can decode a base 64 string to image using following code我明白了这个问题
I figured out the issue