0

ASPWebサービスからAndroidに渡されるJSONを含む文字列を使用しています。Androidアプリで受け取る文字列は次のとおりです。

GetCustomerListResponse{GetCustomerListResult=[{"VehicleID":"KL-9876","VehicleType":"Nissan","VehicleOwner":"Sanjiva"}]; }

JSON文字列から車両タイプを取得したい場合、どうすればよいですか?

私の完全なAndroidコードは次のとおりです。

package com.example.objectpass;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.TextView;
import org.ksoap2.*;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.*;

public class MainActivity extends Activity {
    TextView resultA;
    Spinner spinnerC;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        String[] toSpinnerSum;
        toSpinnerSum = new String[9];

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        spinnerC = (Spinner) findViewById(R.id.spinner1);
        resultA = (TextView) findViewById(R.id.textView2);

        final String NAMESPACE = "http://tempuri.org/";
        final String METHOD_NAME = "GetCustomerList";
        final String SOAP_ACTION = "http://tempuri.org/GetCustomerList";
        final String URL = "http://192.168.1.100/WebService4/Service1.asmx";

        SoapObject Request = new SoapObject(NAMESPACE, METHOD_NAME);
        SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(
                SoapEnvelope.VER11);
        soapEnvelope.dotNet = true;
        soapEnvelope.setOutputSoapObject(Request);
        AndroidHttpTransport aht = new AndroidHttpTransport(URL);

        try {
            aht.call(SOAP_ACTION, soapEnvelope);
            SoapObject response = (SoapObject) soapEnvelope.bodyIn;

            resultA.setText(response.toString());
        } 
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}

どんな助けでも大歓迎です。ありがとう

4

3 に答える 3

1

JSONObjectクラスを使用できます。チュートリアルはここにあります。関連する質問はこちら.

于 2012-12-29T15:13:03.940 に答える
1

現在の Json 文字列を次のように解析します。

 //Convert String to JsonArray
 JSONArray jArray = new JSONArray(response.toString());

 for(int i=0;i<jArray.length();i++){
    // get json object from json Array
  JSONObject jsonobj = jArray.getJSONObject(i);

  //get VehicleType from jsonObject
   String str_VehicleType=jsonobj.getString("VehicleType");

  //get VehicleOwner from jsonObject
   String str_VehicleOwner=jsonobj.getString("VehicleOwner");

 }

詳細については、Android で josn 文字列を解析する方法を参照してください。

http://www.technotalkative.com/android-json-parsing/

于 2012-12-29T15:31:20.877 に答える
1

ここで、これを試してください:

final int jsonBeginIdx = response.firstIndexOf("=");
final int jsonEndIdx = response.lastIndexOf(";");

if(jsonBeginIdx > 0 && jsonEndIdx > jsonBeginIdx) {
    final String jsn = response.substring(jsonBeginIdx + 1, jsonEndIdx);
    final JSONObject jsonObj = new JSONObject(json);
} else {
    // deal with malformed response here
}
于 2012-12-29T15:39:25.597 に答える