You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
com.alibaba.fastjson2.JSONException: json format error : "
at com.alibaba.fastjson2.reader.FieldReaderListStrMethod.readFieldValue(FieldReaderListStrMethod.java:83)
at com.alibaba.fastjson2.reader.ObjectReader2.readObject(ObjectReader2.java:241)
at com.alibaba.fastjson2.JSON.parseObject(JSON.java:258)
at com.alibaba.fastjson2.JSONObject.parseObject(JSONObject.java:1717)
附加信息
如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
The text was updated successfully, but these errors were encountered:
问题描述
单元素的数组json序列化的时候,没有中括号;后面直接导致解析端用fastjon反序列化的时候,直接报格式错误
环境信息
请填写以下信息:
重现步骤
如何操作可以重现该问题:
一些框架在序列化的时候,如果是单元素的集合,直接就是省去了中括号,后面直接导致解析端用fastjon2反序列化的时候,直接报格式错误
{"name": "zhangsan", "books" : "西游记"}
{"name": "zhangsan", "books" : ["西游记","红楼梦"]}
xxx.xxx
方法...
数据...
错误//可在此输入示例代码
@DaTa
public class Student {
}
public class JSONMain {
}
期待的正确结果
对您期望发生的结果进行清晰简洁的描述。
希望fastjson能支持解析单元素数组场景下不含有中括号,也能解析成功
相关日志输出
请复制并粘贴任何相关的日志输出。
com.alibaba.fastjson2.JSONException: json format error : "
at com.alibaba.fastjson2.reader.FieldReaderListStrMethod.readFieldValue(FieldReaderListStrMethod.java:83)
at com.alibaba.fastjson2.reader.ObjectReader2.readObject(ObjectReader2.java:241)
at com.alibaba.fastjson2.JSON.parseObject(JSON.java:258)
at com.alibaba.fastjson2.JSONObject.parseObject(JSONObject.java:1717)
附加信息
如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
The text was updated successfully, but these errors were encountered: