我需要将 json 字符串转换为 java 对象并将其显示为 long。json 字符串是一个固定的长数字数组:
{numbers
[ 268627104, 485677888, 506884800 ] }
除了以 0 结尾的数字外,要转换的代码在所有情况下都可以正常工作。它将这些代码转换为科学记数法数字格式:
public static Object fromJson(HttpResponse response, Class<?> classOf)
throws IOException {
InputStream instream = response.getResponseInputStream();
Object obj = null;
try {
Reader reader = new InputStreamReader(instream, HTTP.UTF_8);
Gson gson = new Gson();
obj = gson.fromJson(reader, classOf);
Logger.d(TAG, "json --> "+gson.toJson(obj));
} catch (UnsupportedEncodingException e) {
Logger.e(TAG, "unsupported encoding", e);
} catch (Exception e) {
Logger.e(TAG, "json parsing error", e);
}
return obj;
}
实际结果:Java对象:268627104、485677888、5.068848E+8
请注意,最后一个数字被转换为科学记数法格式。谁能建议可以做些什么来解决它或防止它或撤消它?我正在使用 Gson v1.7.1