博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字典、数组、JSON之间的转化小demo
阅读量:4984 次
发布时间:2019-06-12

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

/** *  数组转JSON. */- (void)testJsonAndArray{    NSArray *arr = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",@"f", nil];        NSLog(@"arrar = %@",arr);        NSError *error = nil;        NSData *jsonData = [NSJSONSerialization dataWithJSONObject:arr options:0 error:&error];        if (!error)    {        NSString *json = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];                NSLog(@"json = %@",json);    }}
/** *  测试json和对象、字典转json */- (void)testJsonAndDict{    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"张三",@"name",                          @"20",@"age",@"180",@"height", nil];        NSLog(@"DIC = %@",dict);        NSError *error = nil;        NSData *data = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];        NSString *json = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];        if (error == nil)    {        NSLog(@"字典转JSON成功,JSON = %@",json);    }    }

 

/** *  把JSON转换成object对象,可能是字典、可能是数组。 * *  @param json 传进来的 json 字符串 */- (void)JsonToObjectWithJosn:(NSString *)json{    //    JSON  用来在网络上进行数据传输的一种数据格式。是一种特殊的字符串。        NSData *jsonData = [json dataUsingEncoding:NSUTF8StringEncoding];        NSError *error = nil;        id result = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:&error];        if (error == nil)    {        NSLog(@"%@ -- %@",result,[result class]);    }    }

 

转载于:https://www.cnblogs.com/fs-ios/p/4995176.html

你可能感兴趣的文章
laravel框架基础知识总结
查看>>
nginx: 响应体太大
查看>>
字符串反混淆实战 Dotfuscator 4.9 字符串加密技术应对策略
查看>>
单例模式
查看>>
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>
MySQL-5.7 高阶语法及流程控制
查看>>
C++学习笔记(十)——向上造型
查看>>
2017/6/16
查看>>
LeetCode 445——两数相加 II
查看>>
预备作业03 20162308马平川
查看>>
【Java】嵌套For循环性能优化案例
查看>>
面试了一个开发人员
查看>>
软件工程及软件项目开发流程
查看>>
关于android4.3 bluetooth4.0的那些事儿
查看>>
嵌入式成长轨迹14 【嵌入式环境及基础】【Linux下的C编程 上】【gcc、gdb和GNU Make】...
查看>>
C语言讲义——变量的输出
查看>>
shell脚本 ----每天学一点shell
查看>>