gpt4 book ai didi

java - 从JSONarray中获取具体值

转载 作者:太空宇宙 更新时间:2023-11-04 13:24:22 25 4
gpt4 key购买 nike

在我的 android 项目中的一个类中,我有一个 JSONarray,其中包含这样的值。

{"imgUrl":"\\assets\\images\\projectpics\\normalt\\Edited_front.jpg","Name":"Normal T-shirt","View":"Unread","Status":"Cart","Quantity":"10","Date_Sub":"2015-09-26","Comment":null,"Customer_ID":"12","Order_ID":"21","Product_ID":"1","Date_Del":null}

我需要将分配给 Customer_ID 的值转换为字符串,

我该怎么做?

最佳答案

如果你有名为 jsonArray 的 JsonArray。

for(int i=0; i<jsonArray.length(); i++) {
JSONObject item = jsonArray.getJSONObject(i); //gets the ith Json object of JSONArray
String customerId = item.getString("Customer_ID");
}

关于java - 从JSONarray中获取具体值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32803279/

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