前段时间遇到的问题现在跟大家来分享。
前段时间遇到的问题现在跟大家来分享。
具体如下:
{"floats":[1.2482147,1.8486938,8.792648],"sensorType":"TYPE_ACCELEROMETER","time":171121101551270}
以上是一条记录传感器类型数据的json字符串,是用gson快速导出json字符类型的,现在有一个需求:将字符顺序改变为time,sensorType,floats的顺序,在网上查了一下,发现gson并没有向fastjson那样改变字段的用法,但是更改框架又比较麻烦。
最后找到了方法—TypeAdapter.write()
下面来看看具体代码
public class SensorTypeAdapter extends TypeAdapter<SensorModule> { @Override public void write(JsonWriter out, SensorModule value) throws IOException { out.beginObject(); //按自定义顺序输出字段信息 out.name("time").value(value.time); out.name("sensorType").value(value.sensorType); out.name("floats").value(value.floats.toString()); out.endObject(); } @Override public SensorModule read(JsonReader in) throws IOException { return null; } }
在初始化中传入该类的对象
gson = new GsonBuilder() .registerTypeAdapter(SensorModule.class, new SensorTypeAdapter()) //registerTypeAdapter可以重复使用 .create();
这样最后得到的json字符串则为
{"time":171121103946789,"sensorType":"TYPE_ACCELEROMETER","floats":"[2.6871338, 5.106003, 7.918762]"}
收藏