JSON-Formatierungs-Online-Tool
ÜberJSON-Formatierungs-Online-Tool:
Mit diesem Online-JSON-Formatierungswerkzeug können Sie verwirrende JSON-Zeichenfolgen in lesbare JSON-Zeichenfolgen formatieren.
Dieses Tool kann die Formatierung falscher JSON-Zeichenfolgen erzwingen, auch wenn die Eingabezeichenfolge nicht der offiziellen JSON-Syntax entspricht.
JSONs Vorteile für XML:
JSON ist einfacher zu lesen als XML, JSON verwendet eine sauberere Syntax und benötigt weniger Platz.
JSON ist viel einfacher als das XML-Parsing, JSON ist perfekt mit JavaScript kompatibel, und das Parsing von XML erfordert eine komplexe XPath-Syntax.
Weitere Links zu JSON (JavaScript Object Notation):
RFC 8259 (JSON): https://tools.ietf.org/html/rfc8259
JSON in Python: https://docs.python.org/3/library/json.html
JSON (GSON) in Java: https://github.com/google/gson
Formatieren von JSON-Zeichenfolgen in Python (mit eigenem JSON-Paket):
import json def format_json(str): resultStr = json.dumps(json.loads(str), indent=4, ensure_ascii=False) return resultStr
JSON-Zeichenfolgen in Java formatieren (mit Paket GSON):
import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonElement; import com.google.gson.JsonParser; public String Format(String jsonStr){ JsonParser parser=new JsonParser(); JsonElement je=parser.parse(jsonStr); Gson gson=new GsonBuilder().setPrettyPrinting().serializeNulls().create(); return gson.toJson(je); }
Verwandte Werkzeuge
JSON-Formatierungs-Online-Tool
JSON-Komprimierungs-Online-Tool
Online-Tool zur XML-Formatierung
XML-Komprimierungs-Online-Tool
JSON zu XML Online-Tool
XML zu JSON Online-Tool
Online-Tool zur HTML-Formatierung
Online-Tool zur HTML-Komprimierung
Javascript-Formatierungs-Online-Tool
Javascript-Komprimierungs-Online-Tool
Online-Tool zur CSS-Formatierung
Online-Tool zur CSS-Komprimierung