Recherche…


Analyse la chaîne JSON à l'aide de la bibliothèque com.google.gson en Java

com.google.gson bibliothèque com.google.gson doit être ajoutée pour utiliser ce code.

Voici l'exemple de chaîne:

String companyDetails = {"companyName":"abcd","address":"abcdefg"}

Les chaînes JSON peuvent être analysées en utilisant la syntaxe ci-dessous en Java:

JsonParser parser =  new JsonParser();
JsonElement jsonElement = parser.parse(companyDetails);
JsonObject jsonObj = jsonElement.getAsJsonObject();
String comapnyName = jsonObj.get("companyName").getAsString();

Parse chaîne JSON en JavaScript

En JavaScript, l'objet JSON est utilisé pour analyser une chaîne JSON. Cette méthode est uniquement disponible dans les navigateurs modernes (IE8 +, Firefox 3.5+, etc.).

Lorsqu'une chaîne JSON valide est analysée, le résultat est un objet JavaScript, un tableau ou une autre valeur.

JSON.parse('"bar of foo"')
// "bar of foo" (type string)
JSON.parse("true")
// true (type boolean)
JSON.parse("1")
// 1 (type number)
JSON.parse("[1,2,3]")
// [1, 2, 3] (type array)
JSON.parse('{"foo":"bar"}')
// {foo: "bar"} (type object)
JSON.parse("null")
// null (type object)

Les chaînes non valides lanceront une erreur JavaScript

JSON.parse('{foo:"bar"}')
// Uncaught SyntaxError: Unexpected token f in JSON at position 1
JSON.parse("[1,2,3,]")
// Uncaught SyntaxError: Unexpected token ] in JSON at position 7
JSON.parse("undefined")
// Uncaught SyntaxError: Unexpected token u in JSON at position 0

La méthode JSON.parse inclut une fonction JSON.parse facultative qui peut limiter ou modifier le résultat de l'analyse

JSON.parse("[1,2,3,4,5,6]", function(key, value) {
  return value > 3 ? '' : value;
})
// [1, 2, 3, "", "", ""]

var x = {};
JSON.parse('{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6}', function(key, value) {
  if (value > 3) { x[key] = value; }
})
// x = {d: 4, e: 5, f: 6}

Dans le dernier exemple, JSON.parse renvoie une valeur undefined . Pour éviter cela, renvoyez la value dans la fonction de réanimation.

Parse JSON avec Groovy

Supposons que nous ayons les données JSON suivantes:

{
    "TESTS": 
    [
         {
              "YEAR": "2017",
              "MONTH": "June",
              "DATE": "28"                  
         }
    ]
}

import groovy.json.JsonSlurper

classe JSONUtils {

private def data;
private def fileName = System.getProperty("jsonFileName")

public static void main(String[] args)
{
    JSONUtils jutils = new JSONUtils()
    def month = jutils.get("MONTH");
}    

Voici l'analyseur:

private parseJSON(String fileName = "data.json")
{ 
    def jsonSlurper = new JsonSlurper()
    def reader

    if(this.fileName?.trim())
    {
        fileName = this.fileName
    }

    reader = new BufferedReader(new InputStreamReader(new FileInputStream(fileName),"UTF-8"));
    data = jsonSlurper.parse(reader);
    return data
}

def get(String item)
{
    def result = new ArrayList<String>();
    data = parseJSON()        
    data.TESTS.each{result.add(it."${item}")}
    return  result
}        

}



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow