JSON 中 LinkedHashMap 的正确表示是什么?

发布于 2024-10-25 21:43:08 字数 206 浏览 1 评论 0原文

当我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伤感在游骋 2024-11-01 21:43:08

不,Javascript 哈希值不一定具有一致的顺序。为此,您可能需要类似的表示形式

[["b", "a"], ["a", "1"], ["c", "2"]]

或将键顺序存储在单独的列表中,具体取决于您要使用它做什么。

No, Javascript hashes do not necessarily have a consistent order. For that, you'd probably want a representation like

[["b", "a"], ["a", "1"], ["c", "2"]]

or store the key order in a separate list, depending on what you are doing with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文