次の形式で結果を提供する Java アプリケーションから RESTful Api を呼び出しています。
["Item1", "Item2" , "Item3"]
それを ArrayList オブジェクトに解析するにはどうすればよいですか?
コード:
private String getResponseString(URI URL) {
HttpClient client = new DefaultHttpClient();
HttpContext context = new BasicHttpContext();
HttpGet get = new HttpGet();
get.setURI(URL);
try {
HttpResponse response = client.execute(get, context);
return getASCIIContentFromEntity(response.getEntity());
} catch (ClientProtocolException e) {
Log.e(Static.DebugTag, e.getMessage());
return null;
} catch (IOException e) {
Log.e(Static.DebugTag, e.getMessage());
return null;
}
}
private String getASCIIContentFromEntity(HttpEntity entity)
throws IllegalStateException, IOException {
InputStream in = entity.getContent();
StringBuffer out = new StringBuffer();
int n = 1;
while (n > 0) {
byte[] b = new byte[4096];
n = in.read(b);
if (n > 0)
out.append(new String(b, 0, n));
}
return out.toString();
}
ここで、フォーム getASCIIContentFromEntity() を返す文字列をパラメーターとして取り、Arraylist を返す別の関数を作成したいと考えています。
PS私は文字列オブジェクトに応答があります。
PPS のタイトルは誤解を招く可能性があります。
期待して感謝します。