`
bk_lin
  • 浏览: 336707 次
社区版块
存档分类
最新评论

android 之访问WebService显示手机号码归属地

阅读更多

发送XML

通过URL封装路径打开一个HttpURLConnection

设置请求方式,Content-Type和Content-Length

XML文件的Content-Type为:text/xml;charset=UTF-8

使用HttpURLConnection获取输出流输出数据

 

WebService

WebService是发布在网络上的API,可以通过发送XML调用,WebService返回结果也是XML数据

WebService没有语言限制,只要可以发送XML数据和接收XML数据即可

http://www.webxml.com.cn网站上提供了一些WebService服务,我们可以对其进行调用

http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo中提供了电话归属地查询的使用说明

内容如下:

 

SOAP 1.2

 

以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。

POST /WebServices/MobileCodeWS.asmx HTTP/1.1
Host: webservice.webxml.com.cn
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getMobileCodeInfo xmlns="http://WebXml.com.cn/">
      <mobileCode>string</mobileCode>
      <userID>string</userID>
    </getMobileCodeInfo>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getMobileCodeInfoResponse xmlns="http://WebXml.com.cn/">
      <getMobileCodeInfoResult>string</getMobileCodeInfoResult>
    </getMobileCodeInfoResponse>
  </soap12:Body>
</soap12:Envelope>

 

HTTP GET

 

以下是 HTTP GET 请求和响应示例。所显示的占位符需替换为实际值。

GET /WebServices/MobileCodeWS.asmx/getMobileCodeInfo?mobileCode=string&userID=string HTTP/1.1
Host: webservice.webxml.com.cn
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://WebXml.com.cn/">string</string>

HTTP POST

以下是 HTTP POST 请求和响应示例。所显示的占位符需替换为实际值。

POST /WebServices/MobileCodeWS.asmx/getMobileCodeInfo HTTP/1.1
Host: webservice.webxml.com.cn
Content-Type: application/x-www-form-urlencoded
Content-Length: length

mobileCode=string&userID=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://WebXml.com.cn/">string</string>

 

下面为具体实例及代码:

界面显示:

向WebService发送的XML文件: send.xml(放置在SRC路径下)

 

Java代码 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">  
  3.   <soap12:Body>  
  4.     <getMobileCodeInfo xmlns="http://WebXml.com.cn/">  
  5.       <mobileCode>$number</mobileCode>  
  6.       <userID></userID>  
  7.     </getMobileCodeInfo>  
  8.   </soap12:Body>  
  9. </soap12:Envelope>  

布局文件man.xml

 

 

Java代码 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <EditText  
  8.         android:id="@+id/phoneET"  
  9.         android:layout_width="match_parent"  
  10.         android:layout_height="wrap_content"  
  11.         android:inputType="phone" >  
  12.   
  13.         <requestFocus />  
  14.     </EditText>  
  15.   
  16.     <Button  
  17.         android:onClick="onClick"  
  18.         android:layout_width="wrap_content"  
  19.         android:layout_height="wrap_content"  
  20.         android:text="归属地查询" />  
  21.   
  22.     <TextView  
  23.         android:id="@+id/locationTV"  
  24.         android:layout_width="wrap_content"  
  25.         android:layout_height="wrap_content"  
  26.         android:textSize="25sp"  
  27. />  
  28.   
  29. </LinearLayout>  

 

功能清单文件AndroidManifest.xml

 

Java代码 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.itheima.webservice"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk android:minSdkVersion="10" />  
  8.     <uses-permission android:name="android.permission.INTERNET"/>  
  9.       <instrumentation  
  10.         android:name="android.test.InstrumentationTestRunner"   
  11.         android:targetPackage="com.itheima.webservice"  
  12.         />  
  13.     <application  
  14.         android:icon="@drawable/ic_launcher"  
  15.         android:label="@string/app_name" >  
  16.     <uses-library android:name="android.test.runner" />  
  17.         <activity  
  18.             android:name=".MainActivity"  
  19.             android:label="@string/app_name" >  
  20.             <intent-filter>  
  21.                 <action android:name="android.intent.action.MAIN" />  
  22.   
  23.                 <category android:name="android.intent.category.LAUNCHER" />  
  24.             </intent-filter>  
  25.         </activity>  
  26.     </application>  
  27.   
  28. </manifest>  

MainActivity:

 

 

Java代码 
  1. package com.itheima.webservice;  
  2.   
  3. import com.itheima.webservice.service.NumberService;  
  4.   
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.view.View;  
  8. import android.widget.EditText;  
  9. import android.widget.TextView;  
  10. import android.widget.Toast;  
  11.   
  12. public class MainActivity extends Activity {  
  13.     private EditText phoneET;  
  14.     private TextView locationTV;  
  15.     public void onCreate(Bundle savedInstanceState) {  
  16.         super.onCreate(savedInstanceState);  
  17.         setContentView(R.layout.main);  
  18.         phoneET = (EditText) findViewById(R.id.phoneET);  
  19.        locationTV = (TextView) findViewById(R.id.locationTV);  
  20.           
  21.           
  22.     }  
  23.       
  24.     public void onClick(View view){  
  25.         try {  
  26.             NumberService service = new NumberService();  
  27.             String num = phoneET.getText().toString();  
  28.             String loacation = service.getLocation(num);  
  29.             locationTV.setText(loacation);  
  30.         } catch (Exception e) {  
  31.             e.printStackTrace();  
  32.             Toast.makeText(getApplicationContext(), "查无此号"1).show();  
  33.         }  
  34.     }  
  35.       
  36.       
  37. }  

NumberService
:

 

 

Java代码 
  1. package com.itheima.webservice.service;  
  2.   
  3. import java.io.InputStream;  
  4. import java.net.HttpURLConnection;  
  5. import java.net.URL;  
  6.   
  7. import org.xmlpull.v1.XmlPullParser;  
  8.   
  9. import android.util.Xml;  
  10.   
  11. import com.itheima.webservice.util.StreamUtil;  
  12.   
  13. public class NumberService {  
  14.   
  15.     public String getLocation(String number) throws Exception {  
  16.         // 读取本地准备好的文件, 用输入的号码替换原来的占位符  
  17.                 InputStream in = NumberService.class.getClassLoader().getResourceAsStream("send.xml");  
  18.                 byte[] data = StreamUtil.load(in);  
  19.                 String content = new String(data);  
  20.                 content = content.replace("$number", number);  
  21.                   
  22.                 // 创建连接对象, 设置请求头, 按照Webservice服务端提供的要求来设置  
  23.                 URL url = new URL("http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx");  
  24.                 HttpURLConnection conn = (HttpURLConnection) url.openConnection();  
  25.                 conn.setConnectTimeout(5000);  
  26.                 conn.setRequestProperty("Host""webservice.webxml.com.cn");  
  27.                 conn.setRequestProperty("Content-Type""application/soap+xml; charset=utf-8");  
  28.                 conn.setRequestProperty("Content-Length", content.getBytes().length + "");  
  29.                 conn.setRequestMethod("POST");  
  30.                   
  31.                 // 输出数据  
  32.                 conn.setDoOutput(true);  
  33.                 conn.getOutputStream().write(content.getBytes());  
  34.               
  35.                   
  36. //              // 获取服务端传回的数据, 解析XML, 得到结果  
  37.                 XmlPullParser parser = Xml.newPullParser();  
  38.                 parser.setInput(conn.getInputStream(), "UTF-8");  
  39.                   
  40.                 for (int type = parser.getEventType();type!=XmlPullParser.END_DOCUMENT;type=parser.next())   
  41.                   if(type==XmlPullParser.START_TAG&&parser.getName().equals("getMobileCodeInfoResult")){  
  42.                       return parser.nextText();  
  43.                   }  
  44.                 return "没有找到此号码";  
  45.     }  
  46.   
  47. }  

读取输入流工具类StreamUtil:

 

 

Java代码 
  1. package com.itheima.webservice.util;  
  2.   
  3.   
  4. import java.io.ByteArrayOutputStream;  
  5. import java.io.IOException;  
  6. import java.io.InputStream;  
  7.   
  8. public class StreamUtil {  
  9.    public static byte[] load(InputStream in ) throws IOException{  
  10.        ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  11.        byte b [] = new byte[1024];  
  12.        int len = -1;  
  13.        while((len=in.read(b))!=-1){  
  14.            baos.write(b,0,len);  
  15.        }  
  16.        baos.close();  
  17.        return baos.toByteArray();  
  18.    }  
  19. }  

2
0
分享到:
评论

相关推荐

    Android中调用Webservice实现号码归属地查询案例

    这个任务通常通过调用外部的Web服务接口来完成,本案例将详细讲解如何在Android应用中集成和调用Webservice来查询号码归属地。 首先,我们需要了解什么是Webservice。Webservice是一种基于网络的、分布式的模块化...

    Android手机号码归属地查询的应用程序

    在Android平台上,开发一款“手机号码归属地查询”的应用程序是一个常见的需求,可以帮助用户了解电话号码的来源地。本文将深入探讨实现这一功能的关键技术、步骤和相关知识点。 首先,我们需要理解的是,手机号码...

    Android 手机号码归属地查询

    【Android 手机号码归属地查询】是一个针对Android平台的应用程序开发实例,它允许用户查询手机号码的归属地信息。这个应用通常会结合Web服务(Websevice)技术,从远程服务器获取数据,以实现对全国各个手机号码的...

    android调用webservice获取手机归属地

    本教程将详细介绍如何在Android应用中调用WebService来获取手机归属地。 1. **理解WebService** WebService是一种基于互联网的、平台无关的服务,它允许不同系统间的应用程序之间进行通信。常见的WebService技术有...

    Andriod调用WebService查询手机归属地

    在Android平台上,调用WebService查询手机归属地是一个常见的任务,主要应用于电话号码分析、广告定向或者用户行为分析等场景。这个过程涉及到多个技术点,包括网络请求、数据解析以及WebService接口的调用。以下是...

    调用webservice例子 查询手机号归属地 soap协议的传xml

    public void onClick(View v) { String mobile = mobileText.getText().toString(); InputStream inStream = this.getClass().getClassLoader().getResourceAsStream("mobilesoap.xml");...

    Android调用Java WebService的实现方法.pdf

    比如常用的手机号码归属地查询和天气预报服务,它们提供了JSON格式的接口供客户端调用以获取信息。 而基于SOAP协议的数据交互,则是通过调用Web Service来实现。Web Service在服务器端发布后,为Android客户端提供...

    安卓webservice运用之号码归属地查询

    【Android Webservice应用:号码归属地查询】 在移动应用程序开发中,经常需要集成各种服务来扩展功能,如号码归属地查询。在这个示例中,我们将深入探讨如何在Android平台上使用Webservice API来实现这一功能。...

    android调用webservice实现手机归属查询

    在Android开发中,调用Web Service来实现手机归属地查询是一项常见的需求,这通常涉及到网络通信、XML或JSON解析以及Web服务接口的调用。在这个过程中,开发者需要掌握以下关键知识点: 1. **Web Service**: Web ...

    Android实现电话号码归属地的查询源码

    在Android平台上,开发一个能够查询电话号码归属地的应用是一个常见的需求。这个应用通常会通过集成外部服务,如WebService,来获取并展示电话号码的相关信息。本文将深入探讨如何使用Android源码实现这一功能。 ...

    个人手机号码归属地查询

    可能包含了一个简单的Web服务接口,用于处理Android客户端发起的查询请求,接收到请求后,查询数据库或API,返回手机号码的归属地信息。 为了实现这个功能,开发者需要掌握以下知识点: 1. Android开发:了解...

    android webservice

    假设我们要调用`www.webxml.com.cn`提供的手机号码归属地查询服务,其WSDL地址为`http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl`。 1. **获取WSDL文档** 通过访问该WSDL地址,我们可以...

    Android例子源码简单的安卓归属地查询源码.zip

    它利用了webservice.webxml.com.cn提供的服务来获取数据,帮助用户查询来电或输入的手机号码所属的地区信息。源码的编译环境是Android 2.3.3(API级别9),这是一个较旧的版本,但仍然具有学习价值,特别是对于初学...

    android webservice实例

    通过以上步骤,你可以构建一个基本的Android应用,利用Web服务查询电话号码归属地。这个实例展示了Android应用如何与远程服务器通信,获取所需信息。实践中,可能还需要对服务器端的Web服务进行调试和优化,以满足更...

    android调用webservice

    4. **显示结果**:在Android应用中展示归属地信息,如运营商、省份和城市。 为了简化这些步骤,开发者经常会选择使用像Retrofit这样的库,它可以自动生成网络请求代码,并且支持Gson或Jackson等库进行自动JSON序列...

    Android 通过 Ksoap2 访问 Web Service Demo

    在这个"Android通过Ksoap2访问WebService Demo"中,我们将探讨如何使用Ksoap2来实现这一功能,特别是查询手机号码归属地。 1. **Ksoap2介绍** Ksoap2是Android平台上的一个开源库,用于处理SOAP消息。SOAP是一种...

    Android编程实现号码归属地查询的方法

    }}在Android编程中实现号码归属地查询,通常涉及到网络通信、XML处理以及对WebService的调用。下面我们将深入探讨这些关键知识点。 1. **网络通信**:在Android中,网络通信通常是通过HTTP或HTTPS协议来实现的。在...

    Android Service

    在本项目"Android Service"中,我们重点探讨的是如何利用服务来实现对Web服务(可能是WebService)的调用,进行手机号码归属地查询。 首先,我们需要了解`Service`的基本概念。在Android应用开发中,`Service`主要...

Global site tag (gtag.js) - Google Analytics