We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For DOM parser, how to convert JsonValue to byte array or string? For example:
byte[] json = toUtf8("{\"a\": {\"b\": \"c\"}}"); JsonValue jsonValue = parser.parse(json, json.length); JsonValue res = jsonValue.get("a");
I want to get the string {"b": "c"}. Thank you in advance for your help with this question.
{"b": "c"}
The text was updated successfully, but these errors were encountered:
This looks like a duplicate of #39. Feel free to reopen it if my understanding is incorrect.
Sorry, something went wrong.
No branches or pull requests
For DOM parser, how to convert JsonValue to byte array or string? For example:
I want to get the string
{"b": "c"}
. Thank you in advance for your help with this question.The text was updated successfully, but these errors were encountered: