私はAndroidプログラミングに不慣れです。私の要件はWebサービスを呼び出すことです。Webサービスから正常に応答を取得しました。Androidで応答を解析する方法。解決策を教えてください。
これは、応答を取得するためのコードです。
HttpResponse response = httpclient.execute(httppost);
String str=response.getStatusLine().toString();
System.out.println("========URL STATUS========"+str);
HttpEntity r_entity = response.getEntity();
if( r_entity != null ) {
result = new byte[(int) r_entity.getContentLength()];
if(r_entity.isStreaming()) {
is = new DataInputStream(r_entity.getContent());
is.readFully(result);
}
}
httpclient.getConnectionManager().shutdown();
String responsedata= (new String(result).toString());