博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSON对象转换成Byte(字节)数组
阅读量:6717 次
发布时间:2019-06-25

本文共 349 字,大约阅读时间需要 1 分钟。

hot3.png


    // JSON对象转换成 byte 数组
    Byte *byteArray = (Byte *)[jsonData bytes];

    NSLog(@"%s",byteArray);

    // 字符串转data

    NSData *stringData = [stirng dataUsingEncoding:NSUTF8StringEncoding];

    // data转byte字节数组

    Byte *stringByteArray = (Byte *)[stringData bytes];

    // OC字符串 转 C语言 字符串

     char* CString = [OCString UTF8String];

转载于:https://my.oschina.net/codeismygirl/blog/634462

你可能感兴趣的文章
androidmanifest.xml权限中文说明
查看>>
matlab练习程序(感知哈希对比图片)
查看>>
多媒体指令(图像灰度化)
查看>>
sqlserver数据库大型应用解决方案总结
查看>>
枚举系统设备
查看>>
C#形参,实参,值传递参数,引用传递参数,输出参数,参数数组的学习
查看>>
在Salesforce中创建Approval Process
查看>>
.NET v2.0 下的高精度计数器 —— Stopwatch [.NET v2.0, C#]
查看>>
Remoting入门实例
查看>>
MongoDB的使用
查看>>
[LeetCode] Meeting Rooms I & II
查看>>
[译]Selenium Python文档:六、页面对象
查看>>
[Windows Azure] How to Scale an Application
查看>>
RC4 in TLS is Broken: Now What?
查看>>
linux下core文件调试方法
查看>>
Tensorflow动态seq2seq使用总结(r1.3)
查看>>
ZOJ 3659 Conquer a New Region(并查集)
查看>>
艾伟:Chart Controls 简介与下载点
查看>>
艾伟_转载:一个简单的 Generic Factory 类
查看>>
艾伟_转载:扩展方法 之 Redirect 篇
查看>>