Android彩信解析
在我的一个应用程序中,我必须解析MMS内容。我能够以字节[]的形式获取编码的彩信内容。现在我必须解码这个 byte[] 并需要根据内容类型和标头值提取所有内容。但我在这里挣扎。我不知道如何开始解码...
任何帮助将不胜感激。
In one of my application, I have to parse the MMS content. I am able to get the encoded MMS content in the form of byte[]. Now I have to decode this byte[] and need to extract all the content based on their content types and header values. But I am struggling here. I don't know how to start decoding...
Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的内容在 byte[] 中,所以你可以尝试这个:
你可以像这样继续解析。
you have the content in byte[] so you can try this:
you can continue to parse like this.