将 NSData 转换为 NSString 并忽略空字节?
我需要将 NSData 对象转换为 NSString。它本来就是乱码,但我需要它来调试。
当我使用 NSString 的 initWithData 时,它会因为数据具有 NULL 字节而中断。如何让它忽略空字节并获得正确的字符串?
I need to convert a NSData object to an NSString. It is meant to be gibberish but I need it for debbuging.
When I use NSString's initWithData, it breaks as the data has NULL bytes. How can I make it ignore the null bytes and get a proper string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 NSData 逐字节复制到 NSMutableData,跳过任何空字节。然后从中初始化字符串。
Copy the NSData to a NSMutableData, byte by byte, skipping any null bytes. Then initialise the string from that.