以下字符串是根据http://www.json.org/
的无效JSON字符串"billPeriod":{"from":"2011-6-1","to":"2011-6-28"}}
一开始就缺少一个闭合支撑。
然而,当我通过Jackson Json解析器传递它时,它返回JsonMappingException而不是JsonParseException。
ObjectMapper mapper = new ObjectMapper();
String input = "\"billPeriod\":{\"from\":\"2011-6-1\",\"to\":\"2011-6-28\"}}"
mapper.readValue(input, clazz.class);
有人可以帮忙吗?我看了但是找不到变量设置来增加解析的“严格性”。
由于 丹