web-dev-qa-db-ja.com

Jsonオブジェクトから文字列値を取得するAndroid

私はAndroidの初心者です。私のプロジェクトでは、HTTP応答から次のjsonを取得しています。

[{"Date":"2012-1-4T00:00:00",
"keywords":null,
"NeededString":"this is the sample string I am needed for my project",
"others":"not needed"}]

上記のJSONから「NeededString」を取得したい。入手方法

28
Dray

これはあなたを助けるかもしれません。

Java:

JSONArray arr = new JSONArray(result);
JSONObject jObj = arr.getJSONObject(0);
String date = jObj.getString("NeededString");

Kotlin:

val jsonArray = JSONArray(result)
val jsonObject: JSONObject = jsonArray.getJSONObject(0)
val date= jsonObject.get("NeededString")
65
nisha.113a5

ループを使用して、配列内でJSONArrayを取得し、JSONObjectを反復する必要がありますが、場合によってはJSONObjectは1つだけですが、それ以上の場合もあります。

JSONArray mArray;
        try {
            mArray = new JSONArray(responseString);
             for (int i = 0; i < mArray.length(); i++) {
                    JSONObject mJsonObject = mArray.getJSONObject(i);
                    Log.d("OutPut", mJsonObject.getString("NeededString"));
                }
        } catch (JSONException e) {
            e.printStackTrace();
        }
10
Lalit Poptani

含むorg.json.jsonobjectプロジェクト内。

その後、これを行うことができます:

JSONObject jresponse = new JSONObject(responseString);
responseString = jresponse.getString("NeededString");

仮定すると、responseStringは受け取った応答を保持します。

受信した応答を文字列に変換する方法を知る必要がある場合は、次のようにします。

ByteArrayOutputStream out = new ByteArrayOutputStream();
response.getEntity().writeTo(out);
out.close();
String responseString = out.toString();
4
xbonez

getStringを使用できます

String name = jsonObject.getString("name");
// it will throws exception if the key you specify doesn't exist

またはoptString

String name = jsonObject.optString("name");
// it will returns the empty string ("") if the key you specify doesn't exist
3
Phan Van Linh

ResponseEntityから要素を取得するコードを次に示します

try {
            final ResponseEntity<String> responseEntity = restTemplate.exchange(API_URL, HttpMethod.POST, entity, String.class);
            log.info("responseEntity"+responseEntity);
            final JSONObject jsonObject ; 
            if (responseEntity.getStatusCode() == HttpStatus.CREATED) {
                try {
                    jsonObject = new JSONObject(responseEntity.getBody());
                    final String strName = jsonObject.getString("name");
                    log.info("name:"+strName);
                } catch (JSONException e) {
                    throw new RuntimeException("JSONException occurred");
                }
            }
        }catch (HttpStatusCodeException exception) {
            int statusCode = exception.getStatusCode().value();
            log.info("statusCode:"+statusCode);
        }
1
Nadhu

JSONObject ライブラリを使用できる場合は、

    JSONArray ja = new JSONArray("[{\"Date\":\"2012-1-4T00:00:00\",\"keywords\":null,\"NeededString\":\"this is the sample string I am needed for my project\",\"others\":\"not needed\"}]");
    String result = ja.getJSONObject(0).getString("NeededString");
1
Nishant

ここで私が使用した解決策は文字列からJSONを取得するための作品です

protected String getJSONFromString(String stringJSONArray) throws JSONException {
        return new StringBuffer(
               new JSONArray(stringJSONArray).getJSONObject(0).getString("cartype"))
                   .append(" ")
                   .append(
               new JSONArray(employeeID).getJSONObject(0).getString("model"))
              .toString();
    }
0
android.dk

あなたに役立つと思います

                JSONArray jre = objJson.getJSONArray("Result");

                for (int j = 0; j < jre.length(); j++) {
                    JSONObject jobject = jre.getJSONObject(j);

                    String  date = jobject.getString("Date");
                    String  keywords=jobject.getString("keywords");
                    String  needed=jobject.getString("NeededString");

                }
0
Nilesh mayatra