JSON 中 LinkedHashMap 的正确表示是什么?
当我使用 GSON 序列化我的 LinkedHashMap
时,我得到
{"b":"a","a":"1","c":"2"}
并在反序列化后以正确的顺序取回元素。所以一切都很好,但是能保证每个工具都这样工作吗? JSON 中条目的顺序有什么意义吗?
When I serialize my LinkedHashMap<String, String>
using GSON, I get
{"b":"a","a":"1","c":"2"}
and after deserializing I get back the elements in the right order. So everything works fine, but is there a guarantee that every tool works this way? Does the order of entries have any significance in JSON?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,Javascript 哈希值不一定具有一致的顺序。为此,您可能需要类似的表示形式
或将键顺序存储在单独的列表中,具体取决于您要使用它做什么。
No, Javascript hashes do not necessarily have a consistent order. For that, you'd probably want a representation like
or store the key order in a separate list, depending on what you are doing with it.