我在閱讀URL中的JSON時遇到問題。從Android中讀取JSON內容
對於桌面應用程序,我一直使用「curl」從URL讀取內容。
即curl -H 'Accept: application/json' 'http://example.com/abc.py/data'
我使用下面的代碼做Android應用程序相同,但它不工作。
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
httppost.addHeader("Accept", "application/json");
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
任何人都可以幫忙嗎?
感謝,
什麼是不工作? – 2011-12-19 02:03:16
你想解析你的android應用程序中的JSON嗎? – 2011-12-19 04:04:38