码迷,mamicode.com
首页 > Web开发 > 详细

NSMutableDictionary转化为JSON字符串数据样例

时间:2015-10-23 19:04:03      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        NSMutableDictionary *dict=[[NSMutableDictionary alloc]init];
        [dict setObject:@"1" forKey:@"one"];
        dict[@"dc"]=@{@"two":@"2"};
        NSLog(@"dict:%@",dict);
        
        NSData *data=[NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:nil];
       NSString *str=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
        NSLog(@"JsonStr:%@",str);
    }
    return 0;
}
/打印结果为:dict:{
    dc =     {
        two = 2;
    };
    one = 1;
}
2015-10-23 16:43:25.025 Test110[6562:614592] JsonStr:{
  "one" : "1",
  "dc" : {
    "two" : "2"
  }
}


NSMutableDictionary转化为JSON字符串数据样例

标签:

原文地址:http://my.oschina.net/u/2410306/blog/521280

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!