Converti dizionario in JSON in Swift


Risposte:


240

Swift 3.0

Con Swift 3, il nome NSJSONSerializatione i suoi metodi sono cambiati, secondo le Linee guida per la progettazione dell'API Swift .

let dic = ["2": "B", "1": "A", "3": "C"]

do {
    let jsonData = try JSONSerialization.data(withJSONObject: dic, options: .prettyPrinted)
    // here "jsonData" is the dictionary encoded in JSON data

    let decoded = try JSONSerialization.jsonObject(with: jsonData, options: [])
    // here "decoded" is of type `Any`, decoded from JSON data

    // you can now cast it with the right type        
    if let dictFromJSON = decoded as? [String:String] {
        // use dictFromJSON
    }
} catch {
    print(error.localizedDescription)
}

Swift 2.x

do {
    let jsonData = try NSJSONSerialization.dataWithJSONObject(dic, options: NSJSONWritingOptions.PrettyPrinted)
    // here "jsonData" is the dictionary encoded in JSON data

    let decoded = try NSJSONSerialization.JSONObjectWithData(jsonData, options: [])
    // here "decoded" is of type `AnyObject`, decoded from JSON data

    // you can now cast it with the right type 
    if let dictFromJSON = decoded as? [String:String] {
        // use dictFromJSON
    }
} catch let error as NSError {
    print(error)
}

Swift 1

var error: NSError?
if let jsonData = NSJSONSerialization.dataWithJSONObject(dic, options: NSJSONWritingOptions.PrettyPrinted, error: &error) {
    if error != nil {
        println(error)
    } else {
        // here "jsonData" is the dictionary encoded in JSON data
    }
}

if let decoded = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: &error) as? [String:String] {
    if error != nil {
        println(error)
    } else {
        // here "decoded" is the dictionary decoded from JSON data
    }
}


Prendo il prossimo [2: A, 1: A, 3: A]. Ma che dire delle parentesi graffe?
Orkhan Alizade,

1
Non capisco la tua domanda. Quali parentesi graffe? Hai chiesto informazioni sulla codifica di un dizionario in JSON e questa è la mia risposta.
Eric Aya,

1
Parentesi graffe JSON, tipo{"result":[{"body":"Question 3"}] }
Orkhan Alizade,

2
@OrkhanAlizade La chiamata sopra per dataWithJSONObject potrebbe produrre le "parentesi graffe" (cioè le parentesi) come parte della risultante NSDatadell'oggetto.
Rob,

Grazie. nota a margine - considera di usare d0 invece di abbreviare (dic) razionale.
johndpope,

166

Stai facendo un'ipotesi sbagliata. Solo perché il debugger / Playground mostra il tuo dizionario tra parentesi quadre (che è come Cocoa visualizza i dizionari) ciò non significa che sia formattato l'output JSON.

Ecco un esempio di codice che convertirà un dizionario di stringhe in JSON:

Versione Swift 3:

import Foundation

let dictionary = ["aKey": "aValue", "anotherKey": "anotherValue"]
if let theJSONData = try? JSONSerialization.data(
    withJSONObject: dictionary,
    options: []) {
    let theJSONText = String(data: theJSONData,
                               encoding: .ascii)
    print("JSON string = \(theJSONText!)")
}

Per visualizzare quanto sopra in un formato "abbastanza stampato" è necessario modificare la riga delle opzioni in:

    options: [.prettyPrinted]

O nella sintassi di Swift 2:

import Foundation
 
let dictionary = ["aKey": "aValue", "anotherKey": "anotherValue"]
let theJSONData = NSJSONSerialization.dataWithJSONObject(
  dictionary ,
  options: NSJSONWritingOptions(0),
  error: nil)
let theJSONText = NSString(data: theJSONData!,
  encoding: NSASCIIStringEncoding)
println("JSON string = \(theJSONText!)")

Il risultato è quello

"JSON string = {"anotherKey":"anotherValue","aKey":"aValue"}"

O in formato carino:

{
  "anotherKey" : "anotherValue",
  "aKey" : "aValue"
}

Il dizionario è racchiuso tra parentesi graffe nell'output JSON, proprio come ci si aspetterebbe.

MODIFICARE:

Nella sintassi di Swift 3/4, il codice sopra è simile al seguente:

  let dictionary = ["aKey": "aValue", "anotherKey": "anotherValue"]
    if let theJSONData = try?  JSONSerialization.data(
      withJSONObject: dictionary,
      options: .prettyPrinted
      ),
      let theJSONText = String(data: theJSONData,
                               encoding: String.Encoding.ascii) {
          print("JSON string = \n\(theJSONText)")
    }
  }

Una normale stringa Swift funziona anche sulla dichiarazione JSONText.
Fred Faust,

@thefredelement, Come si converte NSData direttamente in una stringa Swift? La conversione da dati a stringa è una funzione di NSString.
Duncan C,

Stavo implementando questo metodo e ho usato l'iniz di data / encoding su una stringa Swift, non sono sicuro che fosse disponibile su Swift 1.x.
Fred Faust,

Mi ha salvato la giornata. Grazie.
Shobhit C

dovrebbe essere selezionata la risposta (y)
iBug

50

Swift 5:

let dic = ["2": "B", "1": "A", "3": "C"]
let encoder = JSONEncoder()
if let jsonData = try? encoder.encode(dic) {
    if let jsonString = String(data: jsonData, encoding: .utf8) {
        print(jsonString)
    }
}

Si noti che è necessario implementare chiavi e valori Codable. Stringhe, In e Doppio (e altro) lo sono già Codable. Vedi Codifica e decodifica tipi personalizzati .


26

La mia risposta alla tua domanda è di seguito

let dict = ["0": "ArrayObjectOne", "1": "ArrayObjecttwo", "2": "ArrayObjectThree"]

var error : NSError?

let jsonData = try! NSJSONSerialization.dataWithJSONObject(dict, options: NSJSONWritingOptions.PrettyPrinted)

let jsonString = NSString(data: jsonData, encoding: NSUTF8StringEncoding)! as String

print(jsonString)

La risposta è

{
  "0" : "ArrayObjectOne",
  "1" : "ArrayObjecttwo",
  "2" : "ArrayObjectThree"
}

24

A volte è necessario stampare la risposta del server per scopi di debug. Ecco una funzione che uso:

extension Dictionary {

    var json: String {
        let invalidJson = "Not a valid JSON"
        do {
            let jsonData = try JSONSerialization.data(withJSONObject: self, options: .prettyPrinted)
            return String(bytes: jsonData, encoding: String.Encoding.utf8) ?? invalidJson
        } catch {
            return invalidJson
        }
    }

    func printJson() {
        print(json)
    }

}

Esempio di utilizzo:

(lldb) po dictionary.printJson()
{
  "InviteId" : 2,
  "EventId" : 13591,
  "Messages" : [
    {
      "SenderUserId" : 9514,
      "MessageText" : "test",
      "RecipientUserId" : 9470
    },
    {
      "SenderUserId" : 9514,
      "MessageText" : "test",
      "RecipientUserId" : 9470
    }
  ],
  "TargetUserId" : 9470,
  "InvitedUsers" : [
    9470
  ],
  "InvitingUserId" : 9514,
  "WillGo" : true,
  "DateCreated" : "2016-08-24 14:01:08 +00:00"
}

24

DictionaryEstensione Swift 4 .

extension Dictionary {
    var jsonStringRepresentation: String? {
        guard let theJSONData = try? JSONSerialization.data(withJSONObject: self,
                                                            options: [.prettyPrinted]) else {
            return nil
        }

        return String(data: theJSONData, encoding: .ascii)
    }
}

Questo è un modo valido e riutilizzabile per risolvere il problema, ma una piccola spiegazione aiuterebbe i nuovi arrivati ​​a capirlo meglio.
nilobarp,

Questo potrebbe essere applicato se le chiavi del dizionario contengono array di oggetti personalizzati?
Raju yourPepe

2
Non è una buona idea usare encoding: .asciil'estensione pubblica. .utf8sarà molto più sicuro!
ArtFeel,

questa stampa con personaggi di escape c'è da qualche parte per impedirlo?
MikeG

10

Swift 3 :

let jsonData = try? JSONSerialization.data(withJSONObject: dict, options: [])
let jsonString = String(data: jsonData!, encoding: .utf8)!
print(jsonString)

Questo si bloccherà se qualsiasi parte è nulla, una pessima pratica per forzare a scartare i risultati. // Comunque ci sono già le stesse informazioni (senza l'arresto anomalo) in altre risposte, evita di pubblicare contenuti duplicati. Grazie.
Eric Aya,

5

La risposta alla tua domanda è di seguito:

Swift 2.1

     do {
          if let postData : NSData = try NSJSONSerialization.dataWithJSONObject(dictDataToBeConverted, options: NSJSONWritingOptions.PrettyPrinted){

          let json = NSString(data: postData, encoding: NSUTF8StringEncoding)! as String
          print(json)}

        }
        catch {
           print(error)
        }

2

Ecco una semplice estensione per fare questo:

https://gist.github.com/stevenojo/0cb8afcba721838b8dcb115b846727c3

extension Dictionary {
    func jsonString() -> NSString? {
        let jsonData = try? JSONSerialization.data(withJSONObject: self, options: [])
        guard jsonData != nil else {return nil}
        let jsonString = String(data: jsonData!, encoding: .utf8)
        guard jsonString != nil else {return nil}
        return jsonString! as NSString
    }

}

1
private func convertDictToJson(dict : NSDictionary) -> NSDictionary?
{
    var jsonDict : NSDictionary!

    do {
        let jsonData = try JSONSerialization.data(withJSONObject:dict, options:[])
        let jsonDataString = String(data: jsonData, encoding: String.Encoding.utf8)!
        print("Post Request Params : \(jsonDataString)")
        jsonDict = [ParameterKey : jsonDataString]
        return jsonDict
    } catch {
        print("JSON serialization failed:  \(error)")
        jsonDict = nil
    }
    return jsonDict
}

1
Diversi errori qui. Perché usare NSDictionary della Fondazione invece del Dizionario di Swift ?! Inoltre, perché restituire un nuovo dizionario con una stringa come valore, anziché restituire i dati JSON effettivi? Questo non ha senso. Anche l'opzione facoltativamente non imballata restituita come opzione non è affatto una buona idea.
Eric Aya,
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.