Json   发布时间:2022-04-22  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了JSONKit 使用示例大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

JSONKit是Object-C一个处理json数据的库,非常高效而且易用,对比同类型的库有非常明显的性能优势,见下图:


JSON和Object-C中数据类型的映射关系如下表所示

number Array Object
JSON Objective-C
null NSNull
trueandfalse NSNumber
String NSString
NSArray
NSDictionary

下面写一个简单的程序使用一下JSONKit(只需下载头文件以及源文件,放在项目目录下

#import <Foundation/Foundation.h>
#import "lib/JSONKit.h"

int main (int argc,const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

	NSString *res = nil;
	
	/*
	 * json格式编码
	 */
	
	//字符串
	NSString *str = @"this is a nsString";
	res = [str JSONString];
	NSLog(@"res= %@",[NSString StringWithString: res]);
	//res= "this is a nsString"
	

	//数组
	NSArray *arr = [[NSArray alloc] initWithObjects:@"One",@"Two",@"Three",nil];
	res = [arr JSONString];
	NSLog(@"res= %@",[NSString StringWithString: res]);
	[arr release];
	//res= ["One","Two","Three"]
	

	//字典类型(对象)
	NSArray *arr1 = [NSArray arrayWithObjects:@"dog",@"cat",nil];
	NSArray *arr2 = [NSArray arrayWithObjects:[NSnumber numberWithBool:YES],[NSnumber numberWithInt:30],nil];
	NSDictionary *Dic = [NSDictionary DictionaryWithObjectsAndKeys:arr1,@"pets",arr2,@"other",nil];
	res = [Dic JSONString];
	NSLog(@"res= %@",[NSString StringWithString: res]);
	//res= {"pets":["dog","cat"],"other":[true,30]}	
	
	
    /*
	 * json格式解码
	 */
	JSONDecoder *jd=[[JSONDecoder alloc] init];
	
	//针对NSData数据
	NSData *data = [Dic JSONData];
	NSDictionary *ret = [jd objectWithData: data];
	NSLog(@"res= %@",[ret objectForKey:@"pets"]);
	//res= (
    //	dog,//	cat
	//)
	NSLog(@"res= %@",[[ret objectForKey:@"other"] objectATindex:0]);
	//res= 1
	
	//针对NSString字符串数据
	NSString *nstr = [Dic JSONString];
	NSDictionary *ret2 = [jd objectWithUTF8String:(const unsigned char *)[nstr UTF8String] length:(unsigned int)[nstr length]];
	NSLog(@"res= %d",[[ret2 objectForKey:@"pets"] indexOfObject:@"cat"]);
	//res= 1
	NSLog(@"res= %@",[[ret2 objectForKey:@"other"] objectATindex:1]);
	//res= 30
	
	[jd release];
	
    [pool drain];
    return 0;
}

JSONKit的接口中还可以自行定制序列化和反序列化选项,针对如何提升效率作者也是给了很多使用的建议,例如尽量使用NSData来替换NSString类型,因为JSON数据通常是用来通信使用,而通信过程使用NSData类型更为高效,毕竟是二进制流数据更短,所以没必要转成NSString多此一举了。不知道我理解得对不对。

大佬总结

以上是大佬教程为你收集整理的JSONKit 使用示例全部内容,希望文章能够帮你解决JSONKit 使用示例所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。