MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

BSON-zu-JSON-Konvertierung mit MongoDB-Treiber-Java-API

Die toJson-Methode von BSON Documnet unterstützt nur die Ausgabe in MongoDB Extended JSON (STRICT- oder SHELL-Format). Wenn Sie reguläres JSON haben möchten, können Sie com.mongodb.util.JSON verwenden Klasse:

String input = "{ \"timestamp\" : 1486064586641 }";
org.bson.Document doc = org.bson.Document.parse(input);
System.out.println("input  = " + input);
System.out.println("output (SHELL) = " + doc.toJson(new JsonWriterSettings(JsonMode.SHELL)));
System.out.println("output (STRICT) = " + doc.toJson(new JsonWriterSettings(JsonMode.STRICT)));
System.out.println("output (JSON) = " + com.mongodb.util.JSON.serialize(doc));

Dies erzeugt die folgende Ausgabe:

input  = { "timestamp" : 1486064586641 }
output (SHELL) = { "timestamp" : NumberLong("1486064586641") }
output (STRICT) = { "timestamp" : { "$numberLong" : "1486064586641" } }
output (JSON) = { "timestamp" : 1486064586641}