Ich habe eine dictionary
Ich muss eine JSON string
durch die Verwendung von dictionary
. Ist es möglich, sie zu konvertieren? Könnt ihr mir bitte dabei helfen?
Antworten
Zu viele Anzeigen?Apple hat in iOS 5.0 und Mac OS X 10.7 einen JSON-Parser und Serialisierer hinzugefügt. Siehe NSJSONSerialisierung .
Um einen JSON-String aus einem NSDictionary oder NSArray zu generieren, müssen Sie kein Framework eines Drittanbieters mehr importieren.
So wird es gemacht:
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dictionaryOrArrayToOutput
options:NSJSONWritingPrettyPrinted // Pass 0 if you don't care about the readability of the generated string
error:&error];
if (! jsonData) {
NSLog(@"Got an error: %@", error);
} else {
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
}
Hier sind Kategorien für NSArray und NSDictionary, um dies zu vereinfachen. Ich habe eine Option für Pretty-Print hinzugefügt (Zeilenumbrüche und Tabulatoren, um die Lesbarkeit zu verbessern).
@interface NSDictionary (BVJSONString)
-(NSString*) bv_jsonStringWithPrettyPrint:(BOOL) prettyPrint;
@end
.
@implementation NSDictionary (BVJSONString)
-(NSString*) bv_jsonStringWithPrettyPrint:(BOOL) prettyPrint {
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:self
options:(NSJSONWritingOptions) (prettyPrint ? NSJSONWritingPrettyPrinted : 0)
error:&error];
if (! jsonData) {
NSLog(@"%s: error: %@", __func__, error.localizedDescription);
return @"{}";
} else {
return [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
}
}
@end
.
@interface NSArray (BVJSONString)
- (NSString *)bv_jsonStringWithPrettyPrint:(BOOL)prettyPrint;
@end
.
@implementation NSArray (BVJSONString)
-(NSString*) bv_jsonStringWithPrettyPrint:(BOOL) prettyPrint {
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:self
options:(NSJSONWritingOptions) (prettyPrint ? NSJSONWritingPrettyPrinted : 0)
error:&error];
if (! jsonData) {
NSLog(@"%s: error: %@", __func__, error.localizedDescription);
return @"[]";
} else {
return [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
}
}
@end
HINWEIS: Diese Antwort wurde gegeben, bevor iOS 5 veröffentlicht wurde.
Holen Sie sich die json-Rahmenwerk und dies tun:
#import "SBJsonWriter.h"
...
SBJsonWriter *jsonWriter = [[SBJsonWriter alloc] init];
NSString *jsonString = [jsonWriter stringWithObject:myDictionary];
[jsonWriter release];
myDictionary
wird Ihr Wörterbuch sein.
- See previous answers
- Weitere Antworten anzeigen