gpt4 book ai didi

java - 如何在android中解析json字符串

转载 作者:行者123 更新时间:2023-11-29 08:04:30 25 4
gpt4 key购买 nike

我是 Android 新手。我对 Android 中的 JSON 解析略知一二。我正在解析一个 Twitter 提要,我想在其中解析名为“user”的标签,其中包含 profile_image_urlscreen_name

JSON 提要是 here .这是我的代码:

JSONParser jParser = new JSONParser();

// getting JSON string from URL
JSONObject json = jParser.getJSONFromUrl(url);

try {
// Getting Array of Contacts

contacts = json.getJSONArray(USER);

// looping through All Contacts
for(int i = 0; i < contacts.length(); i++){
JSONObject c = contacts.getJSONObject(i);
}

最佳答案

您可以使用 JSONObject在安卓中。

    JSONParser jParser = new JSONParser();

// getting JSON string from URL
String jsonString = jParser.getJSONFromUrl(url).tostring();

JSONArray json= new JSONArray(jsonString);



try {

// looping through All Contacts
for(int i = 0; i < json.length(); i++){
JSONObject contacts = json.getJSONObject(i);

JSONObject user = contacts.getJSONObject("user");

String imageUrl = user.getString("profile_image_url");
String screenName = user.getString("Screen_name");

}
}catch(Exception e)
{
}

关于java - 如何在android中解析json字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12165015/

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