我正在处理很多json文件,但其中一些文件格式无效。
是否有可以找到JSON格式错误的库?
我想要错误消息,例如:“{{property”之后找到错误行100:val {“以便轻松找到该行并手动修复它。
每个json文件都有500多行。
答案 0 :(得分:0)
是否有可以找到JSON格式错误的库?
您可以尝试使用像JSON Lint这样的PHP工具。以下是PHP中的示例用法:
use Seld\JsonLint\JsonParser;
$parser = new JsonParser();
// returns null if it's valid json, or a ParsingException object.
$parser->lint($json);
// Call getMessage() on the exception object to get
// a well formatted error message error like this
// Parse error on line 2:
// ... "key": "value" "numbers": [1, 2, 3]
// ----------------------^
// Expected one of: 'EOF', '}', ':', ',', ']'
// Call getDetails() on the exception to get more info.
// returns parsed json, like json_decode() does, but slower, throws
// exceptions on failure.
$parser->parse($json);