gpt4 book ai didi

java - 如何根据特定键的值 null 删除 JSON 数组中的 JSON 对象?

转载 作者:行者123 更新时间:2023-11-30 07:18:32 25 4
gpt4 key购买 nike

[{"period":"","billing_mode":"checked","price":"1500","bundleid":0,"name":"hello stack","deviceid":"923is3j4","date":"2016-06-23","userid":0,"type":"mobile","strutid":999}]

我有一个 JSON 数组,里面有像上面这样的 JSON 对象。我想要具有

的 JSON 对象
"period":""

被删除。可以吗?请帮帮我,谢谢。P.S:这是针对 Java 而非 Javascript。

最佳答案

看看你可以用这种方式做到

这是给 PHP 人员的:)

    $json='{"period":"","billing_mode":"checked","price":"1500","packageid":0,"name":"hello stack","subscriberid":"9283is3j4","date":"2016-06-23","serviceid":0,"type":"event","programid":999}';

$arr = json_decode($json, true);
unset($arr['period']);
echo json_encode($arr);

关于java - 如何根据特定键的值 null 删除 JSON 数组中的 JSON 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37989779/

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