将 SDP 数据从 byte[] 转换为 Object?
我当前正在通过网络发送和接收 SIP 消息。
当我想将 SDP 数据添加到 SIP 消息中时,我使用 jrtp 中的 SessionDescription 对象。
然后将该对象添加到 SIP 消息中。
但是当我从服务器收到 SIP 消息时,它的 SDP 位于 byte[] 数组中。
所以我想知道是否有办法将 byte[] 转换回 SessionDescription 对象,以便我可以使用 SessionDescription 对象的方法来解析数据?
I am currently sending and receiving SIP messages across a network.
When I want to add SDP data to a SIP message I use the SessionDescription object in jrtp.
This object is then added to the SIP message.
But when I get a SIP message from the server its SDP is in a byte[] array.
So I'm wondering is there anyway to convert the byte[] back into a SessionDescription object so I can use the SessionDescription object's methods to parse the data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用 Byte[] wrapper 字节类。
I think you can use Byte[] wrapper class of byte.