Mise à jour du-6ren">
gpt4 book ai didi

java - 获取对象中的 JSON 表达式

转载 作者:行者123 更新时间:2023-12-02 02:45:50 24 4
gpt4 key购买 nike

在此表达式中:

obj: {"created":"2017/02/09 15:57","fields":{"summary":"(30) #F24 Emarsys ==> Mise à jour du fichier de transfert / Dépriorisé en attendant PARDOT","issuetype":{"name":"Task"},"created":"589c8377576a33706397f3f4","

我认为这是一个微不足道的问题,但我还没有达到这个表达:

obj: {"created":"2017/02/09 15:57" ...

我愿意:

String created2 = obj.getJSONObject("fields").getString("created");

但我得到:

"created":"589c8377576a33706397f3f4"

我没有成功“创建”第一个元素。

请您建议我做这些事情。

最佳答案

根据RFC7159, "The JavaScript Object Notation (JSON) Data Interchange Format" :

When the names within an object are notunique, the behavior of software that receives such an object isunpredictable. Many implementations report the last name/value paironly. Other implementations report an error or fail to parse theobject, and some implementations report all of the name/value pairs,including duplicates.

您将看到第一个选项,“许多实现仅报告姓氏/值对”。一般来说,最好保持 JSON 对象中的键唯一。

关于java - 获取对象中的 JSON 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44591867/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com