返回顶部
首页 > 资讯 > 后端开发 > JAVA >JSON转换异常:Cannot deserialize instance of `java.lang.String` out of START_OBJECT token
  • 636
分享到

JSON转换异常:Cannot deserialize instance of `java.lang.String` out of START_OBJECT token

javajson 2023-08-20 16:08:07 636人浏览 八月长安
摘要

问题与解决方案 问题 在日常开发当中我们往往会碰到很多调用第三接口的业务,那么就免不了各种 JSON 的转换,下面就来谈谈我遇到的这个问题意思:就是说jsON解析失败,用String类型无法序列化Json对象其实给出的提示已经很明确了:比

在这里插入图片描述

问题与解决方案

问题

  • 在日常开发当中我们往往会碰到很多调用第三接口的业务,那么就免不了各种 JSON 的转换,下面就来谈谈我遇到的这个问题
  • 意思:就是说jsON解析失败,用String类型无法序列化Json对象
  • 其实给出的提示已经很明确了:比如:Cannot deserialize instance of:无法反序列化,比如:through reference chain:指的就是这个参数的类型有问题,这里我这个 data 是一个 String 类型,但是三方返回的格式是这样的:{laoliu:xxxx}
HttpMessageNotReadableException: JSON parse error: Cannot deserialize instance of `java.lang.String` out of START_OBJECT token;nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of `java.lang.String` out of START_OBJECT token at [Source: (PushbackInputStream); line: 1, column: 24] (through reference chain: xxxResponse["data"])

解决方案

  • 于是乎:把这个字段改成了:Object,然后获取的时候再转换一下就可以了:JSONObject json=(JSONObject) JSONObject.toJSON(response.getData());
  • 如果要获取里面的某个参数,可以这样:json.getString(“xxx”);

来源地址:https://blog.csdn.net/Mango_Bin/article/details/131021907

--结束END--

本文标题: JSON转换异常:Cannot deserialize instance of `java.lang.String` out of START_OBJECT token

本文链接: https://lsjlt.com/news/376556.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作