tech.deplant.commons.jodan.JsonInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core Show documentation
Show all versions of commons-core Show documentation
Development framework for Everscale DApp development
The newest version!
package tech.deplant.commons.jodan;
import tech.deplant.commons.jodan.data.JsonElement;
import tech.deplant.commons.jodan.data.JsonIterator;
import java.text.CharacterIterator;
import java.text.StringCharacterIterator;
public class JsonInput {
public static void parse(String json) {
final JsonIterator it = new JsonIterator(json);
System.out.println(JsonElement.parse(it));
}
}