Genera stringa JSON da NSDictionary in iOS


338

Ho un dictionaryho bisogno di generare un JSON stringutilizzando dictionary. È possibile convertirlo? Ragazzi, per favore, potete aiutarmi su questo?


3
@RicardoRivaldo che è questo
QED

18
chiunque venga qui dalla ricerca di Google, si prega di leggere la risposta di seguito da @Guillaume
Mahendra Liya,

Risposte:


233

Ecco le categorie per NSArray e NSDictionary per renderlo super facile. Ho aggiunto un'opzione per pretty-print (nuove righe e schede per facilitare la lettura).

@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

8
se creiamo una categoria di NSObject e inseriamo lo stesso metodo, funziona sia per NSArray che per NSDictionary. Non è necessario scrivere due file / interfacce separati. E dovrebbe restituire zero in caso di errore.
Abdullah Umer,

Perché pensi che NSUTF8StringEncodingsia la codifica corretta?
Heath Borders,

5
Non importa, la documentazione dice "I dati risultanti sono codificati in UTF-8".
Heath Borders,

@AbdullahUmer Questo è quello che ho fatto troppo, come presumo sarà anche lavorare su NSNumber, NSStringe NSNull- troveranno in un minuto o due!
Benjohn,

756

Apple ha aggiunto un parser JSON e un serializzatore in iOS 5.0 e Mac OS X 10.7. Vedi NSJSONSerialization .

Per generare una stringa JSON da un NSDictionary o NSArray, non è più necessario importare alcun framework di terze parti.

Ecco come farlo:

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];
}

88
Questo è un buon consiglio ... è davvero fastidioso avere progetti con un sacco di librerie di terze parti.
zakdances,

3
Ottima soluzione per la conversione in JSON Object. Ottimo lavoro .. :)
MS.

1
+1 Aggiungendo questo come categoria a NSArraye NSDictionaryrenderebbe il riutilizzo molto più semplice.
devios1

come riconvertire json al dizionario?
OMGPOP

5
@OMGPOP - [NSJSONSerialization JSONObjectWithData:options:error:]restituisce un oggetto Foundation da dati JSON dati
Lukasz 'Severiaan' Grela

61

Per convertire un NSDictionary in un NSString:

NSError * err;
NSData * jsonData = [NSJSONSerialization dataWithJSONObject:myDictionary options:0 error:&err]; 
NSString * myString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];

34

NOTA: questa risposta è stata fornita prima del rilascio di iOS 5.

Ottieni il json-framework e fai questo:

#import "SBJsonWriter.h"

...

SBJsonWriter *jsonWriter = [[SBJsonWriter alloc] init];

NSString *jsonString = [jsonWriter stringWithObject:myDictionary];  

[jsonWriter release];

myDictionary sarà il tuo dizionario.


Grazie per la risposta. Potete per favore suggerirmi come aggiungere il framework alla mia applicazione, sembra che ci siano così tante cartelle nella stig-json-framework-36b738f
ChandraSekhar

@ChandraSekhar dopo aver clonato il repository git, dovrebbe essere sufficiente aggiungere la cartella Classes / al tuo progetto.
Nick Weaver,

1
Ho appena scritto stackoverflow.com/questions/11765037/… per illustrare completamente questo. Includere il controllo degli errori e alcuni consigli.
Pascal,

25

Puoi anche farlo al volo inserendo quanto segue nel debugger

po [[NSString alloc] initWithData:[NSJSONSerialization dataWithJSONObject:yourDictionary options:1 error:nil] encoding:4];

4
Le costanti codificate sono un po 'spaventose. Perché non usare NSUTF8StringEncoding ecc.?
Ian Newson,

5
Al momento non funziona in LLDB:error: use of undeclared identifier 'NSUTF8StringEncoding'
Andy,

2
Perfetto per quei momenti in cui desideri ispezionare rapidamente un dizionario con un editor json esterno!
Florian,

15

Puoi passare array o dizionario. Qui, sto prendendo NSMutableDictionary.

NSMutableDictionary *contentDictionary = [[NSMutableDictionary alloc]init];
[contentDictionary setValue:@"a" forKey:@"b"];
[contentDictionary setValue:@"c" forKey:@"d"];

Per generare una stringa JSON da un NSDictionary o NSArray, non è necessario importare alcun framework di terze parti. Basta usare il seguente codice: -

NSError *error; 
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:contentDictionary // Here you can pass array or dictionary
                    options:NSJSONWritingPrettyPrinted // Pass 0 if you don't care about the readability of the generated string
                    error:&error];
NSString *jsonString;
if (jsonData) {
    jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    //This is your JSON String
    //NSUTF8StringEncoding encodes special characters using an escaping scheme
} else {
    NSLog(@"Got an error: %@", error);
    jsonString = @"";
}
NSLog(@"Your JSON String is %@", jsonString);

12
NSMutableDictionary *contentDictionary = [[NSMutableDictionary alloc]init];
        [contentDictionary setValue:@"a" forKey:@"b"];
        [contentDictionary setValue:@"c" forKey:@"d"];
        NSData *data = [NSJSONSerialization dataWithJSONObject:contentDictionary options:NSJSONWritingPrettyPrinted error:nil];
        NSString *jsonStr = [[NSString alloc] initWithData:data
                                                  encoding:NSUTF8StringEncoding];

Quando passo questo alla richiesta POST come parametro, ricevo un +[NSJSONSerialization dataWithJSONObject:options:error:]: Invalid top-level type in JSON write'errore. Utilizzo di XCode 9.0
Daya Kevin,

7

In Swift (versione 2.0) :

class func jsonStringWithJSONObject(jsonObject: AnyObject) throws -> String? {
    let data: NSData? = try? NSJSONSerialization.dataWithJSONObject(jsonObject, options: NSJSONWritingOptions.PrettyPrinted)

    var jsonStr: String?
    if data != nil {
        jsonStr = String(data: data!, encoding: NSUTF8StringEncoding)
    }

    return jsonStr
}

3

Ora non sono necessarie classi di terze parti iOS 5 introdotte Nsjsonserialization

NSString *urlString=@"Your url";
NSString *urlUTF8 = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url=[[NSURL alloc]initWithString:urlUTF8];
NSURLRequest *request=[NSURLRequest requestWithURL:url];

NSURLResponse *response;

NSData *GETReply = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];

NSError *myError = nil;

NSDictionary *res = [NSJSONSerialization JSONObjectWithData:GETReply options:NSJSONReadingMutableLeaves|| NSJSONReadingMutableContainers error:&myError];

Nslog(@"%@",res);

questo codice può essere utile per ottenere jsondata.


Penso di si NSJSONReadingMutableLeaves | NSJSONReadingMutableContainers.
AFP

1

In Swift, ho creato la seguente funzione di supporto:

class func nsobjectToJSON(swiftObject: NSObject) {
    var jsonCreationError: NSError?
    let jsonData: NSData = NSJSONSerialization.dataWithJSONObject(swiftObject, options: NSJSONWritingOptions.PrettyPrinted, error: &jsonCreationError)!

    if jsonCreationError != nil {
        println("Errors: \(jsonCreationError)")
    }
    else {
        // everything is fine and we have our json stored as an NSData object. We can convert into NSString
        let strJSON : NSString =  NSString(data: jsonData, encoding: NSUTF8StringEncoding)!
        println("\(strJSON)")
    }
}


1

Ecco la versione di Swift 4

extension NSDictionary{

func toString() throws -> String? {
    do {
        let data = try JSONSerialization.data(withJSONObject: self, options: .prettyPrinted)
        return String(data: data, encoding: .utf8)
    }
    catch (let error){
        throw error
    }
}

}

Esempio di utilizzo

do{
    let jsonString = try dic.toString()
    }
    catch( let error){
        print(error.localizedDescription)
    }

Oppure, se sei sicuro che sia un dizionario valido, puoi usarlo

let jsonString = try? dic.toString()

Questo non funzionerà come la domanda richiesta, prettyPrint mantiene la spaziatura quando si tenta di schiacciare una stringa.
Sean Lintern,

1

Questo funzionerà in swift4 e swift5.

let dataDict = "the dictionary you want to convert in jsonString" 

let jsonData = try! JSONSerialization.data(withJSONObject: dataDict, options: JSONSerialization.WritingOptions.prettyPrinted)

let jsonString = NSString(data: jsonData, encoding: String.Encoding.utf8.rawValue)! as String

print(jsonString)

-1
public func jsonPrint(_ o: NSObject, spacing: String = "", after: String = "", before: String = "") {
    let newSpacing = spacing + "    "
    if o.isArray() {
        print(before + "[")
        if let a = o as? Array<NSObject> {
            for object in a {
                jsonPrint(object, spacing: newSpacing, after: object == a.last! ? "" : ",", before: newSpacing)
            }
        }
        print(spacing + "]" + after)
    } else {
        if o.isDictionary() {
            print(before + "{")
            if let a = o as? Dictionary<NSObject, NSObject> {
                for (key, val) in a {
                    jsonPrint(val, spacing: newSpacing, after: ",", before: newSpacing + key.description + " = ")
                }
            }
            print(spacing + "}" + after)
        } else {
            print(before + o.description + after)
        }
    }
}

Questo è abbastanza vicino allo stile di stampa originale Objective-C

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.