Android基础总结(9)——网络技术
这里主要讲的是如何在手机端使用HTTP协议和服务器端进行网络交互,并对服务器返回的数据进行解析,这也是Android最常使用到的网络技术了。
1、WebView的用法
Android提供的WebView控件可以帮助我们在自己的应用程序中嵌入一个浏览器,从而非常轻松的展示各种各样的网页。下面是一个简单的示例:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent" /> </LinearLayout>
public class MainActivity extends Activity { private WebView webView ; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.web_view); webView = (WebView) findViewById(R.layout.web_view) ;
//调用getSettings()方法可以去设置浏览器的属性,我们这里只是调用
//setJavaScriptEnabled(true)方法来设置WebView支持TavaScript脚本
webView.getSettings().setJavaScriptEnabled(true);
/*
* 调用setWebViewClient()时我们传入了一个WebViewClient对象
* 这样做的功能是当需要从一个网页跳转到另一个网页时,我们希望目标
* 网页仍然在当前网页上显示,而不是打开系统浏览器
*/
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("http://www.baidu.com");
}
}
2、使用HttpURLConnection访问网络
使用HttpURLConnection访问网络的方式很简单,具体按以下步骤执行就可以了:
- 获取HttpURLConnection对象,一般我们只需要new一个URL对象,并传入目标网络地址,然后调用一下openConnection()方法即可
URL url = new URL("http://www.baidu.com") ;
HttpURLConnection con = (HttpURLConnection) url.openConnection() ; - 获取HttpURLConnection对象之后,设置HTTP请求所使用的方法。常用的方法有两种:GET或POST。GET表示希望从服务器那里获取数据,POST则表示希望提交数据给服务器。
con.setRequestMethod("GET");
- 接下来可以进行一些自由的设置,比如设置连接超时、读取超时的毫秒数,以及服务器希望得到的一些消息头等
con.setConnectTimeout(8000);
con.setReadTimeout(8000); - 之后我们调用getInputStream()方法得到从服务器返回的输入流,然后从里面读取数据。注意,服务器返回给我们的HTML代码
InputStream in = con.getInputStream() ;
BufferedReader reader = new BufferedReader(new InputStreamReader(in)) ;
StringBuilder response = new StringBuilder() ;
String line ;
while((line = reader.readLine()) != null){
response.append(line) ;
} - 最后,使用完之后,我们要记得关闭连接资源
con.disconnect();
- 获取HttpURLConnection对象,一般我们只需要new一个URL对象,并传入目标网络地址,然后调用一下openConnection()方法即可
下面的代码是在界面上设置了一个按钮和一个编辑框,通过点击按钮,手机访问“http://www.baidu.com”网页,并将返回的数据显示在文本框中。布局代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send Request" /> <ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.61" >
<EditText
android:id="@+id/response_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine" >
</EditText>
</ScrollView>
</LinearLayout>
Activity代码如下:
public class MainActivity extends Activity implements OnClickListener{ private static final int SHOW_RESPONSE = 0 ;
private Button sendResquest ;
private EditText responseText ; private Handler handler = new Handler(){
@Override
public void handleMessage(Message msg) {
switch(msg.what){
case SHOW_RESPONSE :
String response = (String)msg.obj ;
//显示结果
responseText.setText(response);
}
}
} ; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout); sendResquest = (Button) findViewById(R.id.button) ;
responseText = (EditText) findViewById(R.id.response_text) ;
sendResquest.setOnClickListener(this) ;
} @Override
public void onClick(View v) {
if(v.getId() == R.id.button){
sendRequestWithHttpURLConnection() ;
}
} private void sendRequestWithHttpURLConnection() {
//开启线程发起网络
new Thread(new Runnable(){ @Override
public void run() {
HttpURLConnection con = null ;
try {
URL url = new URL("http://www.baidu.com") ;
con = (HttpURLConnection) url.openConnection() ;
con.setRequestMethod("GET");
con.setConnectTimeout(8000);
con.setReadTimeout(8000);
InputStream in = con.getInputStream() ;
BufferedReader reader = new BufferedReader(new InputStreamReader(in)) ;
StringBuilder response = new StringBuilder() ;
String line ;
while((line = reader.readLine()) != null){
response.append(line) ;
} Message msg = new Message() ;
msg.what = SHOW_RESPONSE ;
msg.obj = response.toString() ;
handler.sendMessage(msg) ; } catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
if(con != null){
con.disconnect();
}
}
}
}).start();
}
}
3、使用HttpClient
访问网络,除了用上面的HttpURLConnection之外,我们还可以用HttpClient来访问http网页资源。HttpClient可以完成过和HttpURLConnection几乎一模一样的功能。具体用法如下:
- 获取HttpClient的实例,但是HttpClient是一个接口,我们通常是创建一个DefaultHttpClient对象
HttpClient httpClient = new DefaultHttpClient() ;
- 接下来如果要发起一条GET请求,则我们需要创建一个HttpGet对象,并传入目标网络的地址,然后调用HttpClient的execute()方法就可以获得服务器的响应HttpResponse 对象
HttpGet httpGet = new HttpGet("http://www.baidu.com") ;
HttpResponse httpResponse = httpClient.execute(httpGet) ;如果是要发起一条POST请求,我们需要和创建一个HttpPost对象,并传入目标网络地址,然后通过一个NameValuePair集合来存放待提交的参数,并将这个参数集合传入UrlEncodedFormEntity中,然后调用HttpPost的setEntity()方法将构建好的UrlEncodedFormEntity传入,然后调用HttpClient的execute()方法就可以获得服务器的响应HttpResponse 对象
HttpPost httpPost = new HttpPost("http://www.baidu.com") ;
List<NameValuePair> params = new ArrayList<NameValuePair>() ;
params.add(new BasicNameValuePair("username","admin")) ;
params.add(new BasicNameValuePair("password","123456")) ;
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params,"utf-8");
httpPost.setEntity(entity);
HttpResponse httpResponse = httpClient.execute(httpPost) ; - 得到HttpResponse 对象之后,服务器所返回的信息就全部都包含在这里了。通常情况下我们都会先取出服务器返回的状态码,如果等于200就说明请求和相应都成功了,然后我们就提取HttpEntity实例,然后将这个实例转化为String即可
if(httpResponse.getStatusLine().getStatusCode() == 200){
//请求和相应都成功了
HttpEntity entity = httpResponse.getEntity() ;
String response = EntityUtils.toString(entity,"utf-8") ; Message msg = new Message() ;
msg.what = SHOW_RESPONSE ;
msg.obj = response.toString() ;
handler.sendMessage(msg) ;
}
- 获取HttpClient的实例,但是HttpClient是一个接口,我们通常是创建一个DefaultHttpClient对象
Android基础总结(9)——网络技术的更多相关文章
- Android学习之基础知识十二 — 第一讲:网络技术的使用
这一节主要讲如何在手机端使用HTTP协议和服务器端进行网络交互,并对服务器返回的数据进行解析,这也是Android中最常用的网络技术. 一.WebView的用法 有时候我们可能会碰到比较特殊的需求,比 ...
- Android基础总结+SQlite数据库【申明:来源于网络】
Android基础总结+SQlite数据库[申明:来源于网络] 基础总结篇之一:Activity生命周期:http://blog.csdn.net/liuhe688/article/details/6 ...
- android基础---->JSON数据的解析
上篇博客,我们谈到了XML两种常用的解析技术,详细可以参见我的博客(android基础---->XMl数据的解析).网络传输另外一种数据格式JSON就是我们今天要讲的,它是比XML体积更小的数据 ...
- 深入理解gradle编译-Android基础篇
深入理解gradle编译-Android基础篇 导读 Gradle基于Groovy的特定领域语言(DSL)编写的一种自动化建构工具,Groovy作为一种高级语言由Java代码实现,本文将对Gradle ...
- 云计算和大数据时代网络技术揭秘(十二)自定义网络SDN
软件定义网络——SDN SDN是网络技术热点,即软件定义网络,OpenFlow是实现SDN思想的一个框架标准, open是指公开.开放,具体为控制平面的规则由各个通信厂家自定义变为公开的技术标准, f ...
- 云计算和大数据时代网络技术揭秘(八)数据中心存储FCoE
数据中心存储演化——FCoE 数据中心三大基础:主机 网络 存储 在云计算推动下,存储基础架构在发生演变 传统存储结构DAS.SAN在发展中遇到了布线复杂.能耗增多的缺点(原生性),需要对架构做根 ...
- JAVA基础知识之网络编程——-网络基础(Java的http get和post请求,多线程下载)
本文主要介绍java.net下为网络编程提供的一些基础包,InetAddress代表一个IP协议对象,可以用来获取IP地址,Host name之类的信息.URL和URLConnect可以用来访问web ...
- [转载] Google数据中心网络技术漫谈
原文: http://www.sdnlab.com/12700.html?from=timeline&isappinstalled=0#10006-weixin-1-52626-6b3bffd ...
- 基础的 Linux 网络命令,你值得拥有
导读 有抱负的 Linux 系统管理员和 Linux 狂热者必须知道的.最重要的.而且基础的 Linux 网络命令合集.在 It's FOSS 我们并非每天都谈论 Linux 的"命令行方面 ...
随机推荐
- Hadoop 2.6.0集群搭建
yum install gcc yum install gcc-c++ yum install make yum install autoconfautomake libtool cmake yum ...
- GL_GL系列 - 总账系统基础(概念)
2014-07-07 Created By BaoXinjian
- Form_通过Zoom客制化跳转页面功能(案例)
2012-09-08 Created By BaoXinjian
- [MySQL] 常用SQL技巧--18.5
1.正则表达式使用 MySQl利用REGEXP命令,提供正则表达式功能. 例子:select 'abcdef' REGEXP '^a'; select 'efg' REGEXP '[^XYZ]'; 2 ...
- Beautiful Soup第三方爬虫插件
什么是BeautifulSoup? Beautiful Soup 是用Python写的一个HTML/XML的解析器,它可以很好的处理不规范标记并生成剖析树(parse tree). 它提供简单又常用的 ...
- Eclipse下快速打开本地文件插件EasyExplorer(转)
EasyExplorer 是一个类似于 Windows Explorer的Eclipse插件,它可以帮助你在不退出Eclipse的环境下浏览本地文件系统,类似的插件也有很多,但是本人喜欢使用这个版本 ...
- 配置sql server 2000以允许远程访问 及 连接中的四个最常见错误
地址:http://www.cnblogs.com/JoshuaDreaming/archive/2010/12/01/1893242.html 配置sql server 2000以允许远程访问适合故 ...
- transactionCurrencyId needs to be supplied to format a transaction money field.
问题背景: 在CRM 4 表单中加入了自定义的,money类型的字段,如果就报错 解决方法:要显示金额类型的字段时,要保证 entity 的 TransactionCurrencyId 这个字段中是有 ...
- delphi SPCOMM 接收数据不完整!该如何解决
SPCOMM 接收数据不完整!该如何解决 SPCOMM 接收数据不完整!我作了一个 读取地磅数据的程序,是用spcomm接收的! 总共有五台地磅,其他4台地磅数据读取都正常.但是有一台接收数据的时 ...
- 【译】深入理解python3.4中Asyncio库与Node.js的异步IO机制
转载自http://xidui.github.io/2015/10/29/%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3python3-4-Asyncio%E5%BA%93% ...