我正在使用这个JSONParser.java:
public class JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
// constructor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url, List<NameValuePair> params) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
Log.e("JSON", json);
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jObj;
}
}
它适用于我的其他请求。 现在我的php文件发送一个数组。 我如何将它转换为Jarray或直接转换为ArrayList,我可以在我的应用程序中使用它?
数组(2项)如下:
03-15 20:40:16.667: E/JSON(26100): [{"ean":"8029694000","name":"KRINGS-VERBAU","betriebsdatenalt":"412"},{"ean":"8026786937","name":"KOMPRESSOR FAHR 5,3 M3 XAS97DDG","betriebsdatenalt":"0"}]
答案 0 :(得分:2)
如果您有阵列
JSONArray myArray=new JSONArray(string)
现在遍历数组并获取像
这样的对象 ArrayList<JSONObject> yourObjects=new ArrayList<JSONObject>();
for(int i=0;i<myArray.length();i++){
yourObjects.add(myArray.getJSONObject(i))
}
如果
,每次都会检查它是否是一个对象或数组 JSONObject obj=new JSONObject(string from server);
if(obj==null){
JSONArray array=new JSONArray(string from server)
}