Moshi HashMap deserializer

那年仲夏 提交于 2019-12-24 02:07:27

问题


I don't know if it is possible to deserialise arrays into hashMap i have got json :

"additionalProperties": [
{
  "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities",
  "category": "Description",
  "key": "TerminalName",
  "sourceSystemKey": "BikePoints",
  "value": "200017",
  "modified": "2016-05-19T12:02:39.82"
}
........
]

and for that json i have got list :

private List<AdditionalProperties> additionalProperties;

everything works perfect but how store that json in HashMap where Key is "key" (TerminalName)"

private HashMap<String,AdditionalProperties> additionalProperties;

回答1:


Moshi supports fields declared as Map but not as HashMap. This way Moshi can use a different implementation of Map that’s more appropriate than HashMap for decoded JSON. If you change your field’s type to Map<String,AdditionalProperties> it should work.



来源:https://stackoverflow.com/questions/37326453/moshi-hashmap-deserializer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!