Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
{"xyz":["a"、 "b"、"c"]}のようなjson応答があります。JsonObjectクラスとJsonArrayクラスを使用して、値a、b、cを文字列として取得しようとしています。
それを行うための最良の方法は何ですか?
おそらくあなたは以下のようなことをする必要があるかもしれません
JSONObject myjson = new JSONObject(JSON_OBJECT); JSONArray xyz_array= myjson.getJSONArray("xyz");
xyz_arrayを繰り返し処理して、配列内の各オブジェクトを取得します。