我正在尝试使用 gson 在 android 模拟器上进行对象映射。
处理 208 kb 左右的 json 数据时速度慢得离谱。我的 json 中没有任何层次结构。
对象映射完成后,我可以看到 gson 创建了大约 500 条记录。
在 android 模拟器上映射输入 json 需要 3 多分钟。
我已经注释了我的实体,它由字符串和几个浮点数组成。
我错过了什么?
任何想法,最佳实践都会有很大帮助。
有什么方法可以快速对象映射 json 数据?
URL myURL = new URL(url);
/* Open a connection to that URL. */
URLConnection ucon = myURL.openConnection();
/*
* Define InputStreams to read from the URLConnection.
*/
InputStream is = ucon.getInputStream();
InputStreamReader reader = new InputStreamReader(is);
long tickCount = System.currentTimeMillis();
Policy[] policies = new Gson().fromJson(reader, Policy[].class);
long endCount = System.currentTimeMillis() - tickCount;
Log.d("Time to pull policies in milliseconds", "" + endCount);