JSONObject jsonObj = new JSONObject();
jsonObj.put("email", email);
jsonObj.put("password", password);
// Create the POST object and add the parameters
HttpPost httpPost = new HttpPost("http://api.readfa.st/session");
StringEntity entity = new StringEntity(jsonObj.toString(), HTTP.UTF_8);
entity.setContentType("application/json");
httpPost.setEntity(entity);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(httpPost);`
目前我正在一个Android项目中工作,我需要将一个数组用户[email],用户[密码]传递给一个使用json的网页...如果任何人可以帮我宽度这个尽快...谢谢你!
答案 0 :(得分:0)
我不确定你的意思。但我想你需要这样的东西:
JSONArray jsonArray = new JSONArray(listOfUsers);
String jsonRepresentationForListOfUsers = jsonArray.toString();
您可以在此处查看更多文档。
http://developer.android.com/reference/org/json/JSONArray.html