26

我有一个客观的C类,比如,

@interface message : NSObject {
 NSString *from;
 NSString *date;
 NSString *msg;
}

我有一个 NSMutableArray 这个消息类的实例。我想使用 iOS 5 SDK 中的新 JSONSerialization API 将 NSMutableArray 中的所有实例序列化为 JSON 文件。我怎样才能做到这一点 ?

是通过遍历 NSArray 中元素的每个实例来创建每个键的 NSDictionary 吗?有人可以提供如何解决这个问题的代码吗?我无法在 Google 中获得好的结果,因为“JSON”将结果偏向服务器端调用和数据传输而不是序列化。非常感谢。

编辑:

NSError *writeError = nil; 
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:notifications options:NSJSONWritingPrettyPrinted error:&writeError];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; 
NSLog(@"JSON Output: %@", jsonString);
4

4 回答 4

40

编辑:我制作了一个虚拟应用程序,对你来说应该是一个很好的例子。

我从您的代码片段创建了一个 Message 类;

//Message.h
@interface Message : NSObject {
    NSString *from_;
    NSString *date_;
    NSString *msg_;
}

@property (nonatomic, retain) NSString *from;
@property (nonatomic, retain) NSString *date;
@property (nonatomic, retain) NSString *msg;

-(NSDictionary *)dictionary;

@end

//Message.m
#import "Message.h"

@implementation Message

@synthesize from = from_;
@synthesize date = date_;
@synthesize msg = mesg_;

-(void) dealloc {
    self.from = nil;
    self.date = nil;
    self.msg = nil;
    [super dealloc];
}

-(NSDictionary *)dictionary {
    return [NSDictionary dictionaryWithObjectsAndKeys:self.from,@"from",self.date,    @"date",self.msg, @"msg", nil];
}

然后我在 AppDelegate 中设置了两个消息的 NSArray。诀窍是不仅顶级对象(在您的情况下为通知)需要可序列化,而且通知包含的所有元素也需要可序列化:这就是我在 Message 类中创建字典方法的原因。

//AppDelegate.m
...
Message* message1 = [[Message alloc] init];
Message* message2 = [[Message alloc] init];

message1.from = @"a";
message1.date = @"b";
message1.msg = @"c";

message2.from = @"d";
message2.date = @"e";
message2.msg = @"f";

NSArray* notifications = [NSArray arrayWithObjects:message1.dictionary, message2.dictionary, nil];
[message1 release];
[message2 release];


NSError *writeError = nil; 
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:notifications options:NSJSONWritingPrettyPrinted error:&writeError];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; 
NSLog(@"JSON Output: %@", jsonString);

@end

因此,当我运行应用程序时的输出是:

2012-05-11 11:58:36.018 堆栈[3146:f803] JSON 输出:[{“msg”:“c”,“from”:“a”,“date”:“b”},{“msg” :“f”,“来自”:“d”,“日期”:“e”}]

原始答案:

这是您要查找的文档吗

于 2012-05-11T09:05:39.507 回答
8

现在您可以使用JSONModel轻松解决这个问题。JSONModel 是一个基于 Class 对对象进行一般序列化/反序列化的库。您甚至可以使用基于非 nsobject 的属性,例如int,shortfloat. 它还可以满足嵌套复杂的 JSON。它为您处理错误检查。

反序列化示例。在头文件中:

#import "JSONModel.h"

@interface Message : JSONModel 
@property (nonatomic, strong) NSString* from;
@property (nonatomic, strong) NSString* date;
@property (nonatomic, strong) NSString* message;
@end

在实现文件中:

#import "JSONModelLib.h"
#import "yourPersonClass.h"

NSString *responseJSON = /*from somewhere*/;
Message *message = [[Message alloc] initWithString:responseJSON error:&err];
if (!err)
{
   NSLog(@"%@  %@  %@", message.from, message.date, message.message):
}

序列化示例。在实现文件中:

#import "JSONModelLib.h"
#import "yourPersonClass.h"

Message *message = [[Message alloc] init];
message.from = @"JSON beast";
message.date = @"2012";
message.message = @"This is the best method available so far";

NSLog(@"%@", [person toJSONString]);
于 2013-05-27T09:54:38.167 回答
2

注意:这仅适用于可序列化对象。这个答案是在上面对问题本身的编辑中提供的,但我自己总是在“答案”部分寻找答案;-)

- (NSString*) convertObjectToJson:(NSObject*) object
{
    NSError *writeError = nil;

    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:object options:NSJSONWritingPrettyPrinted error:&writeError];
    NSString *result = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];

    return result;
}
于 2014-03-04T01:05:18.527 回答
1

这是我在我的项目BWJSONMatcher中使用的一个库,它可以帮助您轻松地将您的 json 字符串与您的数据模型匹配,只需一行代码。

...
NSString *jsonString = @"{your-json-string}";
YourValueObject *dataModel = [YourValueObject fromJSONString:jsonString];

NSDictionary *jsonObject = @{your-json-object};
YourValueObject *dataModel = [YourValueObject fromJSONObject:jsonObject];
...
YourValueObject *dataModel = instance-of-your-value-object;
NSString *jsonString = [dataModel toJSONString];
NSDictionary *jsonObject = [dataModel toJSONObject];
...
于 2015-10-29T04:29:03.240 回答