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
AndroidDev
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
Tagir Valeev
source
to share
There will be no answer and may not be in JAVA 9, but
0
templefox
source
to share
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
collapsar
source
to share