我的 php 文件有这个输出:
echo json_encode(array("value0","value1","value2"));
如何在 Android 中将此响应作为数组获取?
HttpResponse response = httpclient.execute(httppost);
String[] resultArray = ?
我希望有:
resultArray[0] --> value0
resultArray[1] --> value1
resultArray[2] --> value2