FastJson库省略小数点后0的Bug的跟踪
最近在项目中使用FastJson库,因为FastJson是阿里巴巴开源的JSON工具包,处理JSON的速度很快,性能也很好,而且功能强大,完全支持Java Bean、集合、Map、日期、Enum、范型等。
但是我们在使用中,发现一个Bug:
我们的接口中定义了某个float类型的参数,但是如果传过来的值的小数点后面为0的话(比如12.0),那么“.0”会被省略掉。而这一点是我们不能接受的。
下面对此Bug详细说明,比如代码如下:
点击(此处)折叠或打开
-
com.alibaba.fastjson.JSONObject json = new com.alibaba.fastjson.JSONObject();
-
json.put("phone", "13911112222");
-
json.put("authCode","285345");
-
json.put("deviceType", "phone");
-
json.put("myvalue", 12.0);
-
String json1 = json.toString();
- System.out.println("JSON-->"+json1);
点击(此处)折叠或打开
- JSON-->{"authCode":"285345","deviceType":"phone","myvalue":12,"phone":"13911112222"}
跟踪FastJson库的源码,发现JSONObject类继承自JSON类,而且toString()方法直接继承父类的方法,未做覆盖,继续查看JSON类的toString()方法,发现是这样的:
点击(此处)折叠或打开
-
@Override
-
public String toString() {
-
return toJSONString();
- }
点击(此处)折叠或打开
-
public String toJSONString() {
-
SerializeWriter out = new SerializeWriter();
-
try {
-
new JSONSerializer(out).write(this);
-
return out.toString();
-
} finally {
-
out.close();
-
}
- }
点击(此处)折叠或打开
-
public void writeFloatAndChar(float value, char c) {
-
String text = Float.toString(value);
-
if (text.endsWith(".0")) {
-
text = text.substring(0, text.length() - 2);
-
}
-
write(text);
-
write(c);
- }
结论:虽然这个不完全算是Bug,但是这种省略浮点数的“.0”结尾,有时候不能满足业务需求。
这里我提供一个基于fastjson v1.1.38版源码修改此Bug后的打包版,下载地址见:fastjson.rar
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。