Romilly Moore
Romilly Moore
I reproduced the issue with the following code ``` String testJson = "[{\"params\":{\"date\":{\"intervalDay\":0},\"domain\":\"weather\",\"showDay\":\"今天\"}}]"; List testList = GsonUtils.getInstance().fromList(testJson,Object.class); System.out.println(testList); ``` In this code, I use `Object.class` to serialize the json string,...
@impactCn thanks for your reply. In current situation,we can use specific type instead of `object`,but how we can solve the problem.
@impactCn Someone has found the issue,I found it in `https://github.com/google/gson/pull/1290`,gson has solve the problem. I solve it using the following code ``` private static final Gson GSON = new GsonBuilder()...