网站首页  软件下载  游戏下载  翻译软件  电子书下载  电影下载  电视剧下载  教程攻略

请输入您要查询的教程攻略:

 

标题 通过HttpClient请求Web Service的操作方法
分类 软件教程
内容     
    Web Service是一个基于可编程的Web应用程序,由于服务端是用Web Service开发的,如果android要调用Web Service服务来获取数据,就需要通过HttpClient发送post请求来获取,操作方法如下。
    方法/步骤:
    注:本文使用的是查询手机号码归属地的Web。
    1、service:http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl。
    查询的主要方法:http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo
    通过HttpClient请求Web Service的操作方法
    2、可以看出该方法的两个传入参数的名称;
    通过HttpClient请求Web Service的操作方法
    3、下面直接上代码。
    
    01[java] view plaincopy02private void getMobileCodeInfo(){03try {04final String SERVER_URL = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo"; // 定义需要获取的内容来源地址05HttpPost request = new HttpPost(SERVER_URL);06List<BasicNameValuePair> params = new ArrayList();07params.add(new BasicNameValuePair("mobileCode", "136370628")); //(注意这里的号码必须大于6位)08params.add(new BasicNameValuePair("userId", ""));09request.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));10HttpResponse httpResponse = new DefaultHttpClient().execute(request);11if (httpResponse.getStatusLine().getStatusCode() != 404)12{13String result = EntityUtils.toString(httpResponse.getEntity());14System.out.println(result);15}16} catch (Exception e) {17Log.e("eee", ""+e);18e.printStackTrace();19}20}
复制代码
[java] view plaincopyprivate void getMobileCodeInfo(){try {final String SERVER_URL = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo"; // 定义需要获取的内容来源地址HttpPost request = new HttpPost(SERVER_URL);List<BasicNameValuePair> params = new ArrayList();params.add(new BasicNameValuePair("mobileCode", "136370628")); //(注意这里的号码必须大于6位)params.add(new BasicNameValuePair("userId", ""));request.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));HttpResponse httpResponse = new DefaultHttpClient().execute(request);if (httpResponse.getStatusLine().getStatusCode() != 404){String result = EntityUtils.toString(httpResponse.getEntity());System.out.println(result);}46. 感情的事总是很难说清楚,我知道分手总是令人难过的,但无论如何,我永远都会站在你这一边,支持你。努力让自己快乐起来吧,好吗?} catch (Exception e) {Log.e("eee", ""+e);e.printStackTrace();}}
    通过HttpClient请求Web Service的操作方法
    通过HttpClient请求Web Service的操作方法就给大家分享到这边了,不会操作的朋友,可以参考教程操作哦!
        通过HttpClient请求Web Service的操作方法手无缚七手八脚鸡膘肥体壮之力谁若弃世,他必爱所有的人,正因他连他们的世界也不好了。于是他就觉察到人的真正的本质是什么,这种本质无非是被人爱。not only … but also 不仅……而且……;issue 问题358.天下大势,分久必合,合久必分。    风烟雨雪阴晴晚,更何须春风千树。尽孤城、落木萧萧,日夜江声流去。莺啼燕语报新年,马邑龙堆路几千。webService,webservice是什么,http请求webservice79、Nurture passes nature.
随便看

 

霍普软件下载网教程攻略栏目提供软件使用教程、手机游戏攻略等方法技巧。

 

Copyright © 2002-2024 101bt.net All Rights Reserved
更新时间:2025/1/25 11:06:03