This is a simple Java JSON parser built using Java Reflection. It can serialize and deserialize Java objects to and from JSON format. To use the JSON parser, simply include the JsonParser class in ...
try (var parser = JsonParser.newInstance("test.json")) { JsonElement elem = parser.parse(); ... } // オブジェクトからJSONへの変換 String jsonStr ...