`
wen742538485
  • 浏览: 237433 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Android 使用HTTPClient调用Web请求(查询手机号码区域)

阅读更多
Android通过Apache HttpClient调用网上提供的WebService服务,获取电话号码所属的区域。调用的服务的网址:

http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo

      

       以前用2.2 访问WebService没有问题,到3.0上访问出现android.os.NetworkOnMainThreadException

找了资料经过实践,解决方法如下:

     

Java代码 
///在Android2.2以后必须添加以下代码  
        //本应用采用的Android4.0  
        //设置线程的策略  
         StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()     
         .detectDiskReads()     
         .detectDiskWrites()     
         .detectNetwork()   // or .detectAll() for all detectable problems     
         .penaltyLog()     
         .build());     
        //设置虚拟机的策略  
          StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()     
                 .detectLeakedSqlLiteObjects()     
                 .detectLeakedClosableObjects()     
                 .penaltyLog()     
                 .penaltyDeath()     
                 .build()); 

///在Android2.2以后必须添加以下代码
//本应用采用的Android4.0
//设置线程的策略
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()  
         .detectDiskReads()  
         .detectDiskWrites()  
         .detectNetwork()   // or .detectAll() for all detectable problems  
         .penaltyLog()  
         .build());  
//设置虚拟机的策略
  StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()  
         .detectLeakedSqlLiteObjects()  
         .detectLeakedClosableObjects()  
         .penaltyLog()  
         .penaltyDeath()  
         .build());






似乎是3.0在网络上做了更加严格的限制,更多的查询API上的StrictMode 。。。。

项目结构如下:






实现代码如下:



Java代码 
package com.easyway.android.query.telephone;  
 
import java.util.ArrayList;  
import java.util.List;  
 
import org.apache.http.HttpResponse;  
import org.apache.http.HttpStatus;  
import org.apache.http.NameValuePair;  
import org.apache.http.client.HttpClient;  
import org.apache.http.client.entity.UrlEncodedFormEntity;  
import org.apache.http.client.methods.HttpPost;  
import org.apache.http.impl.client.DefaultHttpClient;  
import org.apache.http.message.BasicNameValuePair;  
import org.apache.http.protocol.HTTP;  
import org.apache.http.util.EntityUtils;  
 
import android.app.Activity;  
import android.os.Bundle;  
import android.os.StrictMode;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
import android.widget.EditText;  
import android.widget.TextView;  
 
/** 
* 利用网上提供的WebService使用 
* HttpClient运用之手机号码归属地查询 
* 参看WebService地址: 
*    http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo 
*     
*    可以采用 
*      SOAP1.1,SOAP1.2,HTTP GET,HTTP POST 
*  
* @author longggangbai 
*  
*/ 
public class AndroidQueryTelCodeActivity extends Activity {  
    private EditText phoneSecEditText;  
    private TextView resultView;  
    private Button queryButton;  
 
    @Override 
    public void onCreate(Bundle savedInstanceState) {  
        ///在Android2.2以后必须添加以下代码  
        //本应用采用的Android4.0  
        //设置线程的策略  
         StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()     
         .detectDiskReads()     
         .detectDiskWrites()     
         .detectNetwork()   // or .detectAll() for all detectable problems     
         .penaltyLog()     
         .build());     
        //设置虚拟机的策略  
          StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()     
                 .detectLeakedSqlLiteObjects()     
                 .detectLeakedClosableObjects()     
                 .penaltyLog()     
                 .penaltyDeath()     
                 .build());  
          
        super.onCreate(savedInstanceState);  
        //设置界面布局  
        setContentView(R.layout.main);  
        //初始化界面  
        initView();  
        //设置各种监听  
        setListener();  
    }  
    /** 
     * 界面相关的各种设置 
     */ 
    private void initView() {  
        //手机号码编辑器  
        phoneSecEditText = (EditText) findViewById(R.id.phone_sec);  
        //  
        resultView = (TextView) findViewById(R.id.result_text);  
        queryButton = (Button) findViewById(R.id.query_btn);  
    }  
    /** 
     * 设置各种事件监听的方法 
     */ 
    private void setListener() {  
        queryButton.setOnClickListener(new OnClickListener() {  
            @Override 
            public void onClick(View v) {  
                // 手机号码(段)  
                String phoneSec = phoneSecEditText.getText().toString().trim();  
                // 简单判断用户输入的手机号码(段)是否合法  
                if ("".equals(phoneSec) || phoneSec.length() < 7) {  
                    // 给出错误提示  
                    phoneSecEditText.setError("您输入的手机号码(段)有误!");  
                    //获取焦点  
                    phoneSecEditText.requestFocus();  
                    // 将显示查询结果的TextView清空  
                    resultView.setText("");  
                    return;  
                }  
                // 查询手机号码(段)信息  
                getRemoteInfo(phoneSec);  
            }  
        });  
    }  
 
    /** 
     * 手机号段归属地查询 
     *  
     * @param phoneSec 
     *            手机号段 
     */ 
    public void getRemoteInfo(String phoneSec) {  
        // 定义待请求的URL  
        String requestUrl = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo";  
        // 创建HttpClient实例  
        HttpClient client = new DefaultHttpClient();  
        // 根据URL创建HttpPost实例  
        HttpPost post = new HttpPost(requestUrl);  
 
        List<NameValuePair> params = new ArrayList<NameValuePair>();  
        // 设置需要传递的参数  
        params.add(new BasicNameValuePair("mobileCode", phoneSec));  
        params.add(new BasicNameValuePair("userId", ""));  
        try {  
            // 设置URL编码  
            post.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));  
            // 发送请求并获取反馈  
            HttpResponse response = client.execute(post);  
 
            // 判断请求是否成功处理  
            if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
                // 解析返回的内容  
                String result = EntityUtils.toString(response.getEntity());  
                // 将查询结果经过解析后显示在TextView中  
                resultView.setText(filterHtml(result));  
            }  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
    }  
 
    /** 
     * 使用正则表达式过滤HTML标记 
     *  
     * @param source 
     *            待过滤内容 
     * @return 
     */ 
    private String filterHtml(String source) {  
        if (null == source) {  
            return "";  
        }  
        return source.replaceAll("</?[^>]+>", "").trim();  
    }  


package com.easyway.android.query.telephone;

import java.util.ArrayList;
import java.util.List;

import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;

import android.app.Activity;
import android.os.Bundle;
import android.os.StrictMode;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

/**
* 利用网上提供的WebService使用
* HttpClient运用之手机号码归属地查询
* 参看WebService地址:
*    http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo
*   
*    可以采用
*      SOAP1.1,SOAP1.2,HTTP GET,HTTP POST
*
* @author longggangbai
*
*/
public class AndroidQueryTelCodeActivity extends Activity {
private EditText phoneSecEditText;
private TextView resultView;
private Button queryButton;

@Override
public void onCreate(Bundle savedInstanceState) {
///在Android2.2以后必须添加以下代码
//本应用采用的Android4.0
//设置线程的策略
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()  
         .detectDiskReads()  
         .detectDiskWrites()  
         .detectNetwork()   // or .detectAll() for all detectable problems  
         .penaltyLog()  
         .build());  
//设置虚拟机的策略
  StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()  
         .detectLeakedSqlLiteObjects()  
         .detectLeakedClosableObjects()  
         .penaltyLog()  
         .penaltyDeath()  
         .build());

super.onCreate(savedInstanceState);
//设置界面布局
setContentView(R.layout.main);
//初始化界面
        initView();
        //设置各种监听
setListener();
}
/**
* 界面相关的各种设置
*/
private void initView() {
//手机号码编辑器
phoneSecEditText = (EditText) findViewById(R.id.phone_sec);
//
resultView = (TextView) findViewById(R.id.result_text);
queryButton = (Button) findViewById(R.id.query_btn);
}
    /**
     * 设置各种事件监听的方法
     */
private void setListener() {
queryButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// 手机号码(段)
String phoneSec = phoneSecEditText.getText().toString().trim();
// 简单判断用户输入的手机号码(段)是否合法
if ("".equals(phoneSec) || phoneSec.length() < 7) {
// 给出错误提示
phoneSecEditText.setError("您输入的手机号码(段)有误!");
//获取焦点
phoneSecEditText.requestFocus();
// 将显示查询结果的TextView清空
resultView.setText("");
return;
}
// 查询手机号码(段)信息
getRemoteInfo(phoneSec);
}
});
}

/**
* 手机号段归属地查询
*
* @param phoneSec
*            手机号段
*/
public void getRemoteInfo(String phoneSec) {
// 定义待请求的URL
String requestUrl = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo";
// 创建HttpClient实例
HttpClient client = new DefaultHttpClient();
// 根据URL创建HttpPost实例
HttpPost post = new HttpPost(requestUrl);

List<NameValuePair> params = new ArrayList<NameValuePair>();
// 设置需要传递的参数
params.add(new BasicNameValuePair("mobileCode", phoneSec));
params.add(new BasicNameValuePair("userId", ""));
try {
// 设置URL编码
post.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
// 发送请求并获取反馈
HttpResponse response = client.execute(post);

// 判断请求是否成功处理
if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
// 解析返回的内容
String result = EntityUtils.toString(response.getEntity());
// 将查询结果经过解析后显示在TextView中
resultView.setText(filterHtml(result));
}
} catch (Exception e) {
e.printStackTrace();
}
}

/**
* 使用正则表达式过滤HTML标记
*
* @param source
*            待过滤内容
* @return
*/
private String filterHtml(String source) {
if (null == source) {
return "";
}
return source.replaceAll("</?[^>]+>", "").trim();
}
}





界面代码main.xml如下:


Java代码 
<?xml version="1.0" encoding="utf-8"?>    
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    android:orientation="vertical"    
    android:layout_width="fill_parent"    
    android:layout_height="fill_parent"    
    android:paddingTop="5dip"    
    android:paddingLeft="5dip"    
    android:paddingRight="5dip"    
    >    
    <TextView    
        android:layout_width="fill_parent"     
        android:layout_height="wrap_content"     
        android:text="手机号码(段):"    
    />    
    <EditText android:id="@+id/phone_sec"    
        android:layout_width="fill_parent"    
        android:layout_height="wrap_content"    
        android:inputType="textPhonetic"    
        android:singleLine="true"    
        android:hint="例如:1398547(手机号码前8位)"    
    />    
    <Button android:id="@+id/query_btn"    
        android:layout_width="wrap_content"    
        android:layout_height="wrap_content"    
        android:layout_gravity="right"    
        android:text="查询"    
    />    
    <TextView android:id="@+id/result_text"    
        android:layout_width="wrap_content"     
        android:layout_height="wrap_content"     
        android:layout_gravity="center_horizontal|center_vertical"    
    />    
</LinearLayout>   

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:paddingTop="5dip" 
    android:paddingLeft="5dip" 
    android:paddingRight="5dip" 
    > 
    <TextView 
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="手机号码(段):" 
    /> 
    <EditText android:id="@+id/phone_sec" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:inputType="textPhonetic" 
        android:singleLine="true" 
        android:hint="例如:1398547(手机号码前8位)" 
    /> 
    <Button android:id="@+id/query_btn" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_gravity="right" 
        android:text="查询" 
    /> 
    <TextView android:id="@+id/result_text" 
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_gravity="center_horizontal|center_vertical" 
    /> 
</LinearLayout> 
 


全局文件AndroidManifest.xml如下:






Java代码 
<?xml version="1.0" encoding="utf-8"?>  
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.easyway.android.query.telephone" 
    android:versionCode="1" 
    android:versionName="1.0" >  
 
    <uses-sdk android:minSdkVersion="14" />  
 
    <application  
        android:icon="@drawable/ic_launcher" 
        android:label="@string/app_name" >  
        <activity  
            android:label="@string/app_name" 
            android:name=".AndroidQueryTelCodeActivity" >  
            <intent-filter >  
                <action android:name="android.intent.action.MAIN" />  
 
                <category android:name="android.intent.category.LAUNCHER" />  
            </intent-filter>  
        </activity>  
    </application>  
    <uses-permission android:name="android.permission.INTERNET" />    
 
</manifest> 
http://topmanopensource.iteye.com/blog/1283845
  • 大小: 32.8 KB
  • 大小: 14.9 KB
分享到:
评论

相关推荐

    Xamarin android调用web api入门示例

    在 `ListView调用web api实例` 文件中,我们可以看到一个实际的应用场景,其中数据从 Web API 获取并显示在一个列表视图中: 1. **创建列表视图** - 在布局文件(如 `activity_main.xml`)中添加 `ListView` 控件...

    android调用webservice接口实现登陆源码

    在Android开发中,调用Web Service接口是常见的数据交互方式,尤其在实现用户登录功能时。Web Service通常采用SOAP或RESTful API的形式提供服务,允许客户端应用程序(如Android应用)发送请求并接收响应。本教程将...

    android httpClient所需jar包

    同时,ksoap2是Android调用Web服务的标准工具之一,但也有其他选择,如Retrofit或OkHttp,它们提供了更现代的API和更好的性能。在使用这些库时,务必注意版本兼容性和性能优化,以确保应用运行流畅并减少网络相关的...

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

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

    Android之Webservice详解与调用天气预报Webservice完整实例

    综上所述,这个实例涵盖了Android调用Web Service的基本流程,从理解Web Service的概念,到选择合适的库(如Ksoap2),再到构建请求、解析响应、处理异常以及UI显示。通过这个实例,开发者可以掌握在Android平台上...

    android httpclient文件上传 http协议post get方法向服务器传输数据

    总结来说,本项目通过具体的代码示例,深入浅出地介绍了Android中HTTPClient的使用,包括GET和POST请求的实现,以及文件上传的详细步骤。这对于任何需要进行网络通信的Android开发者来说,都是不可或缺的知识点。

    android 调用webservices 实例,可运行

    在Android开发中,调用Web服务是常见的需求,主要用于实现移动应用与远程服务器的数据交互。Web服务,如SOAP(简单对象访问协议)或RESTful API,可以提供数据接口供客户端应用进行请求和响应。本实例将详细介绍如何...

    java android 调用webservice

    二、Android调用Web服务的基本流程 1. 创建HTTP请求:Android通过HttpURLConnection或HttpClient库来发送HTTP请求。由于Android API 23及以上版本移除了HttpClient,现在更推荐使用HttpURLConnection。 2. 构建请求...

    Android调用Web应用浅析.pdf

    《Android调用Web应用浅析》这篇文章主要探讨了Android如何访问和交互不同类型的Web应用程序,如JSP和ASP.NET,以及如何处理XML和JSON数据。文章深入研究了两种主要的网络访问方式:通过URL和使用HTTP客户端...

    android AppWidgetProvider httpclient 扒取网页

    总结起来,这个项目涉及到Android AppWidgetProvider的使用,通过HttpClient从web服务器获取数据,解析HTML,更新Widget显示,设置定时刷新,以及使用Notification进行交互。这些知识点涵盖了Android应用开发中的多...

    mono for android调用webServer服务

    以上就是使用Mono for Android调用WebServer服务的基础步骤和关键知识点。在实际开发中,你还需要考虑性能优化、安全性和其他具体业务需求。通过结合C#的强大功能和Mono for Android的便利性,你可以高效地实现...

    Android应用源码之从中调用web service的源码.zip

    本资源"Android应用源码之从中调用web service的源码.zip"提供了一个具体的实例,展示了如何在Android应用程序中调用Web Service,以便获取或发送数据。以下是关于这个主题的详细知识点: 1. **Android权限**: 在...

    安卓开发-从android中调用web service的源码.zip

    在Android开发中,调用Web Service是常见的数据交互方式,特别是在需要与远程服务器进行数据交换时。本资源“安卓开发-从android中调用web service的源码.zip”提供了具体的实现示例,帮助开发者理解这一过程。以下...

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

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

    commons-httpclient包和ksoap2-android-assembly包

    在Android开发中,调用Web服务是常见的需求,这通常涉及到与远程服务器进行数据交互,如获取或提交信息。为了实现这一目标,开发者通常会利用HTTP客户端库和SOAP(Simple Object Access Protocol)库。在您提供的...

    android请求web服务器的四种方式

    本文将详细探讨四种主要的Android请求Web服务器的方法:HttpURLConnection、HttpClient(已废弃)、AsyncTask与Retrofit。 1. HttpURLConnection HttpURLConnection是Java标准库中的类,适用于Android平台,支持GET...

    android 调用 Webservice源码

    总之,Android调用Webservice源码的示例是一个很好的学习资源,它展示了Android客户端如何利用ksoap2库与C#编写的Web服务进行交互。通过理解这个示例,开发者可以更好地掌握Android与Web服务的集成技术,为自己的...

    HttpClient组件及其在Android开发中的应用探讨.pdf

    在Android中使用HttpClient时,需要注意Android版本兼容性的问题,因为从Android 6.0(API级别23)开始,HttpClient被标记为弃用。开发者可以选择使用其他网络库,如OkHttp,或者在AndroidManifest.xml中为应用声明...

    httpclient-4.5.5

    1. **Web服务调用**:通过 HttpClient 发送 RESTful API 请求,获取或提交数据。 2. **爬虫开发**:HttpClient 可用于抓取网页内容,实现自动化信息收集。 3. **安全通信**:HTTPS 请求对于涉及敏感信息的网络交互...

Global site tag (gtag.js) - Google Analytics