Created
July 7, 2014 03:13
-
-
Save goodzsq/3d3893a69ea8d6af5c8e to your computer and use it in GitHub Desktop.
Android json http request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HttpPost request = new HttpPost(url); | |
| // 先封装一个 JSON 对象 | |
| JSONObject param = new JSONObject(); | |
| param.put("name", "rarnu"); | |
| param.put("password", "123456"); | |
| // 绑定到请求 Entry | |
| StringEntity se = new StringEntity(param.toString()); | |
| request.setEntity(se); | |
| // 发送请求 | |
| HttpResponse httpResponse = new DefaultHttpClient().execute(request); | |
| // 得到应答的字符串,这也是一个 JSON 格式保存的数据 | |
| String retSrc = EntityUtils.toString(httpResponse.getEntity()); | |
| // 生成 JSON 对象 | |
| JSONObject result = new JSONObject( retSrc); | |
| String token = result.get("token"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment