Does Java have its own built-in JSON parser

I am currently using Gson to parse JSON data. Some online code testing tools allow you to write Java code but do not provide any facility for importing packages. CoderPad is one site. Does Java have a built-in JSON parser? I couldn't find it.

+3


source to share


3 answers


No, there is no JSON parser in Java. There's a suggestion for such a feature (see also this bug ), but it hasn't been assigned to any JDK version yet.



+3


source


There will be no answer and may not be in JAVA 9, but



0


source


Java EE 7 has JSON classes related to the corresponding JSR 353 (also in an overview article on presence in oracle ).

I cannot provide more but explicit references as I have never worked with this interface.

0


source







All Articles