使用java验证json文件
我正在使用来自 json.org 的类。使用它们,有人可以建议一段代码,让人们解析输入流以查看它是否代表有效的 json 文件。
I am using classes which came from json.org. Using them, can someone suggest a sniplet of the code which would let one parse the input stream to see whether it represents a valid json file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 JSONObject 构造函数 即可如果源字符串不是正确的 JSON 格式字符串,则抛出 JSONException。
Just use the JSONObject constructor and it throws JSONException if the source string is not proper JSON formatted String.