如何將自定義類的實例化對象轉(zhuǎn)換為JSON數(shù)據(jù)
我所用的方法是通過Runtime的相關(guān)方法,先后兩步來實現(xiàn)的魔策。具體往下看:
新建一個類命名為《UserClass》
- 展示.h文件UserClass.h
// UserClass.h
// MyPickerView
// Created by LiynXu on 16/3/7.
// Copyright ? 2016年 LiynXu. All rights reserved.
#import <Foundation/Foundation.h>
@interface UserClass : NSObject
@property (nonatomic,strong) NSString *name;
@property (nonatomic,strong) NSString *password;
@property (nonatomic,assign) NSInteger age;
@property (nonatomic,strong) NSString *sex;
- (instancetype)initWithName:(NSString *)name Password:(NSString *)password;
- (NSDictionary *)convertToDictWithObject:(NSObject *)object;//主要使用這個方法得到一個字典
@end
由上面的頭文件可以看出我所建立的類有4個屬性:name匈子,password,age闯袒,sex虎敦。
并且包含一個初始化方法,和對象轉(zhuǎn)字典的方法(了解過Runtime政敢,所以知道了Runtime可以在運行時某個對象的所有屬性其徙,以及屬性的相關(guān)值)
具體實現(xiàn)方法
- 第一步將自定義類的實例化對象轉(zhuǎn)為字典,這一步需要結(jié)合Runtime進行喷户,所以我們需要做一個操作就是導(dǎo)入一個頭文件
-
import <objc/runtime.h>//當(dāng)前需要使用使用運行時庫
第二步使用第一部得到的字典轉(zhuǎn)為JSON數(shù)據(jù)
// UserClass.m
// MyPickerView
// Created by LiynXu on 16/3/7.
// Copyright ? 2016年 LiynXu. All rights reserved.
#import "UserClass.h"
#import <objc/runtime.h>//當(dāng)前需要使用使用運行時庫
@implementation UserClass
-(instancetype)initWithName:(NSString *)name Password:(NSString *)password{
self= [super init];
if (self) {
_name = name;
_password = password;
}
return self;
}
上面的主要是一個初始化方法唾那,重要的是下面,下面褪尝,下面通贞!
- (NSDictionary *)convertToDictWithObject:(NSObject *)object{//獲取當(dāng)前對象的所有屬性以及屬性的值
NSMutableDictionary *Dict = [NSMutableDictionary dictionary];
unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList([object class], &outCount);
//獲取所有屬性以及屬性的值,并且轉(zhuǎn)換為一個字典
for (i = 0; i<outCount; i++){
objc_property_t property = properties[i];
const char* char_f =property_getName(property);
NSString *propertyName = [NSString stringWithUTF8String:char_f];
id propertyValue = [self valueForKey:(NSString *)propertyName];
if (propertyValue) [Dict setObject:propertyValue forKey:propertyName];
}
free(properties);
return Dict;
}
@end
程序入口main.m 包含具體示例代碼
//
// main.m
// JsonCode
//
// Created by LiynXu on 16/3/7.
// Copyright ? 2016年 LiynXu. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "UserClass.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
UserClass *user = [[UserClass alloc] initWithName:@"name" Password:@"password"];
NSDictionary *codeDict = [user convertToDictWithObject:user];//對象轉(zhuǎn)字典,
NSLog(@"%@",codeDict);
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:codeDict options:NSJSONWritingPrettyPrinted error:nil];//字典轉(zhuǎn)json code
NSLog(@"%@",jsonData);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *path = [NSString stringWithFormat:@"%@/Document/jsonData.json",NSHomeDirectory()];
BOOL res=[fileManager createFileAtPath:path contents:nil attributes:nil];
if (res) {
NSLog(@"文件創(chuàng)建成功: %@" ,path);
}else
NSLog(@"文件創(chuàng)建失敗: %@" ,path);
NSString *jsonStrong = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; //json轉(zhuǎn)字符串
NSLog(@"%@",jsonStrong);
NSDictionary *decodeDict = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil]; //json Decode
NSLog(@"%@",decodeDict);
}
return 0;
}