com.alibaba.fastjson.JSONException: not close json text, token : error

导读:本篇文章讲解 com.alibaba.fastjson.JSONException: not close json text, token : error,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

错误描述

com.alibaba.fastjson.JSONException: not close json text, token : error
        at com.alibaba.fastjson.parser.DefaultJSONParser.close(DefaultJSONParser.java:1533)
        at com.alibaba.fastjson.JSON.parse(JSON.java:186)
        at com.alibaba.fastjson.JSON.parse(JSON.java:192)
        at com.alibaba.fastjson.JSON.parse(JSON.java:148)
        at com.picc.controller.RobotConfigController.getDecByStr(RobotConfigController.java:141)
        at sun.reflect.GeneratedMethodAccessor79.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)

错误原因

仔细看代码没有问题

        Object parse = JSON.parse(substring);

那么原因就出在传入的字符串身上,我得是客户端调用的,华为 小米 vivo传入的都是正常的JSON字符串,但是苹果手机传入的字符串不一样他会在字符串JSON对象后边追加一个莫名其妙的符号 可能是空格
正常是这样的JSON

{"userName":"展明","userId":"1111"} 

不正常的是这种 后边有个小符号 粘贴出来没了 所以推测是空格之类的

{"userName":"展明","userId":"1111"}  

在这里插入图片描述

解决方法

既然知道可能是JSON字符串结构问题 那就简单了,如果确定是空格可以直接调用trim()方法,保险起见我决定截取彻底

        int i = str.lastIndexOf("{");
        int j = str.lastIndexOf("}");
        if(i==-1||j==-1){
            br.setErrno(400);
            br.setData(str);
            br.setErrmsg("转换失败");
            return ResponseEntity.ok(br);
        }
        String substring = str.substring(i, j + 1);
        System.out.println("截取字符串:"+substring);

确保参数的情况下截取然后再转换,也可以手动删除参数中的其他字符(空格等)

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/106499.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!