如何使用JSON格式 POST数据到服务器
我有这个JSON字符串,我想要POST这个数据到服务器,请问在Android上要怎么完成。JSON字符串{"clientId":"ID:1234-1234","devic...
我有这个JSON字符串,我想要POST这个数据到服务器,请问在Android上要怎么完成。JSON字符串{"clientId":"ID:1234-1234","device":{"userAgent":"myUA","capabilities":{"sms":true,"data":true,"gps":true,"keyValue":{"Key2":"MyValue2","Key1":"myvalue1"}},"screen":{"width":45,"height":32},"keyValue":{"DevcKey2":"myValue2","DevcKey1":"myValue1"}},"time":1294617435368} 我的问题是,如何把这个JSON数据POST到服务器上。
展开
3个回答
2013-12-20
展开全部
HttpPost request = new HttpPost(url);// 先封装一个 JSON 对象JSONObject param = new JSONObject();param.put("name", "rarnu");param.put("password", "123456");// 绑定到请求 EntryStringEntity 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");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、编程语言
//----1、
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");
2、jQuery
$.post("getUserMessage.ashx?t=" + Math.random(), { userName: txtUserName.val(), userPassWord: txtPassWord.val() }, function (json) {
if (json) {
//返回Json数据处理
}
}, "json");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询