java – org.codehaus.jackson.JsonParseException:意外的字符(‘/'(代码47))

前端之家收集整理的这篇文章主要介绍了java – org.codehaus.jackson.JsonParseException:意外的字符(‘/'(代码47))前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含json格式的HashMap客户列表的文件.

像这样:

{"Davide":{"name":"Davide","cf":"FRCDVD","pi":"1234","telephone":"333","website":"www","sector":"Student","address":"Rome"}}

这只是列表的一个客户.
每次调用控制器时,我都想从文件获取数据并将它们转换为HashMap列表.

我尝试这样做:

HashMap<String,Customer> listCustomer = new HashMap<>();
listCustomer = new ObjectMapper().readValue(pathCustomerFile,HashMap.class); //This line gives me error

我收到了这个错误

org.codehaus.jackson.JsonParseException: Unexpected character (‘/’ (code 47)): maybe a (non-standard) comment? (not recognized as one since Feature ‘ALLOW_COMMENTS’ not enabled for parser)

我怎样才能做到这一点?

解决方法

我最近遇到过这个问题.我试图将路径(以字符串的形式)传递给readValue.您需要将其传递给要解析的字符串或文件对象.基于您的变量名称我认为您可能已将其传递给文件的路径.

(基本上,它正在读取文件路径中的’/’并在它们上面抛出错误.

原文链接:https://www.f2er.com/java/126364.html

猜你在找的Java相关文章