欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android 网络连接处理分析

程序员文章站 2023-12-15 11:44:40
在android中,可以有多种方式来实现网络编程: 创建url,并使用urlconnection/httpurlconnection 使用httpclient使用web...

在android中,可以有多种方式来实现网络编程:

创建url,并使用urlconnection/httpurlconnection

使用httpclient

使用webview

创建url,并使用urlconnection/httpurlconnection

java.net.*下面提供了访问 http 服务的基本功能。使用这部分接口的基本操作主要包括:

创建 url 以及 urlconnection / httpurlconnection 对象

1 设置连接参数

2 连接到服务器

3 向服务器写数据

4 从服务器读取数据

源码

try { 
        // 创建url对象 
        url url = new url("http://t.sina.cn/fesky"); 
        // 创建url连接 
        urlconnection connection = url.openconnection(); 
        // 对于 http 连接可以直接转换成 httpurlconnection, 
        // 这样就可以使用一些 http 连接特定的方法,如 setrequestmethod() 等 
        // httpurlconnection connection 
        // =(httpurlconnection)url.openconnection(proxy_yours); 
        // 设置参数  www.jb51.net
        connection.setconnecttimeout(10000); 
        connection.addrequestproperty("user-agent", "j2me/midp2.0"); 
        // 连接服务器 
        connection.connect(); 

    } catch (ioexception e) { 
        // todo auto-generated catch block 
        e.printstacktrace(); 
    }
使用httpclient
对于httpclient类,可以使用httppost和httpget类以及httpresponse来进行网络连接。

 android 网络连接处理分析

使用webview

android手机中内置了一款高性能webkit内核浏览器,在sdk中封装成了webview组件。

1. webview的xml定义:

<webview   
        android:id="@+id/webview"  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent"  
    /> 
2.manifest文件中权限的设定:
<uses-permission android:name="android.permission.internet" />
3.如果想要支持javascript:webview.getsettings().setjavascriptenabled(true);  
4.如果需要在webview中显示网页,而不是在内置浏览器中浏览,则需要mwebview.setwebviewclient,并重写shouldoverrideurlloading方法。

5.如果不做任何处理,在显示你的brower ui时,点击系统"back"键,整个browser会作为一个整体"back"到其他activity中,而不是希望的在browser的历史页面中back。如果希望实现在历史页面中back,需要在当前activity中处理back事件:mwebview.goback();

webview webview; 
    /** called when the activity is first created. */ 
    @override 
    public void oncreate(bundle savedinstancestate) { 
        super.oncreate(savedinstancestate); 
        setcontentview(r.layout.main); 
        // 获取webview对象 
        webview = (webview) findviewbyid(r.id.webview);  
        // 使能javascript 
        webview.getsettings().setjavascriptenabled(true);  
        // 如果需要在webview中显示网页,而不是在内置浏览器中浏览, 
        // 则需要mwebview.setwebviewclient,并重写 
        // shouldoverrideurlloading方法。 
        webview.setwebviewclient(new webviewclientdemo()); 
        // 加载网页 
        webview.loadurl("http://t.sina.cn/fesky");   
    } 
    @override 
    public boolean onkeydown(int keycode, keyevent event) { 
        // 按下back键回到历史页面中 
        if ((keycode == keyevent.keycode_back) && webview.cangoback()) {  
            webview.goback();  
            return true;  
        }  
        return super.onkeydown(keycode, event); 
    } 
    private class webviewclientdemo extends webviewclient {  
        @override  
        // 在webview中而不是默认浏览器中显示页面 
        public boolean shouldoverrideurlloading(webview view, string url) {  
            view.loadurl(url);  
            return true;  
        }  
    }
webview.loaddata(html, "text/html", "utf-8");

如果html中包含中文,则需要webview.loaddata(urlencoder.encode(html,encoding), mimetype, encoding);

对于本地图片或网页的显示,可以使用loadurl,不过url的地址前缀为file:///,如"file:///android_asset/test.htm"。

上一篇:

下一篇: