在Android中調(diào)用WebService實例
某些情況下我們可能需要與Mysql或者Oracle數(shù)據(jù)庫進行數(shù)據(jù)交互,有些朋友的第一反應就是直接在Android中加載驅(qū)動然后進行數(shù)據(jù)的增刪改查。我個人不推薦這種做法,一是手機畢竟不是電腦,操作大量數(shù)據(jù)費時費電;二是流量貴如金那。我個人比較推薦的做法是使用Java或PHP等開發(fā)接口或者編寫WebService進行數(shù)據(jù)庫的增刪該查,然后Android調(diào)用接口或者WebService進行數(shù)據(jù)的交互。本文就給大家講解在Android中如何調(diào)用遠程服務器端提供的WebService。
既然是調(diào)用WebService,我們首先的搭建WebService服務器。
下面演示的就是如何通過該網(wǎng)站提供的手機號碼歸屬地查詢WebService服務查詢號碼歸屬地
調(diào)用地址http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo。
首先,將請求消息保存在XML文件中,然后使用$替換請求參數(shù),如下:
mobilesoap.xml
<span style="font-size:16px;"><?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>$mobile</mobileCode> <userID></userID> </getMobileCodeInfo> </soap12:Body> </soap12:Envelope></span>
其次,設計MainActivity布局文件,
main.xml
<span style="font-size:16px;"><?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"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="手機號碼" /> <EditText android:id="@+id/mobileNum" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btnSearch" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="查詢" /> <TextView android:id="@+id/mobileAddress" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout></span>
下面貼出MainActivity,
在Android中調(diào)用WebService還是比較簡單的:請求webservice,獲取服務響應的數(shù)據(jù),解析后并顯示。
<span style="font-size:16px;">package com.szy.webservice; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; import java.util.HashMap; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.xmlpull.v1.XmlPullParser; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.util.Xml; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; /** * @author coolszy * @date 2012-3-8 * @blog http://blog.92coding.com */ public class MainActivity extends Activity { private EditText mobileNum; private TextView mobileAddress; private static final String TAG = "MainActivity"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mobileNum = (EditText) this.findViewById(R.id.mobileNum); mobileAddress = (TextView) this.findViewById(R.id.mobileAddress); Button btnSearch = (Button) this.findViewById(R.id.btnSearch); btnSearch.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 獲取電話號碼 String mobile = mobileNum.getText().toString(); // 讀取xml文件 InputStream inStream = this.getClass().getClassLoader().getResourceAsStream("mobilesoap.xml"); try { // 顯示電話號碼地理位置,該段代碼不合理,僅供參考 mobileAddress.setText(getMobileAddress(inStream, mobile)); } catch (Exception e) { Log.e(TAG, e.toString()); Toast.makeText(MainActivity.this, "查詢失敗", 1).show(); } } }); } /** * 獲取電話號碼地理位置 * * @param inStream * @param mobile * @return * @throws Exception */ private String getMobileAddress(InputStream inStream, String mobile) throws Exception { // 替換xml文件中的電話號碼 String soap = readSoapFile(inStream, mobile); byte[] data = soap.getBytes(); // 提交Post請求 URL url = new URL("http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("POST"); conn.setConnectTimeout(5 * 1000); conn.setDoOutput(true); conn.setRequestProperty("Content-Type", "application/soap+xml; charset=utf-8"); conn.setRequestProperty("Content-Length", String.valueOf(data.length)); OutputStream outStream = conn.getOutputStream(); outStream.write(data); outStream.flush(); outStream.close(); if (conn.getResponseCode() == 200) { // 解析返回信息 return parseResponseXML(conn.getInputStream()); } return "Error"; } private String readSoapFile(InputStream inStream, String mobile) throws Exception { // 從流中獲取文件信息 byte[] data = readInputStream(inStream); String soapxml = new String(data); // 占位符參數(shù) Map<String, String> params = new HashMap<String, String>(); params.put("mobile", mobile); // 替換文件中占位符 return replace(soapxml, params); } /** * 讀取流信息 * * @param inputStream * @return * @throws Exception */ private byte[] readInputStream(InputStream inputStream) throws Exception { byte[] buffer = new byte[1024]; int len = -1; ByteArrayOutputStream outSteam = new ByteArrayOutputStream(); while ((len = inputStream.read(buffer)) != -1) { outSteam.write(buffer, 0, len); } outSteam.close(); inputStream.close(); return outSteam.toByteArray(); } /** * 替換文件中占位符 * * @param xml * @param params * @return * @throws Exception */ private String replace(String xml, Map<String, String> params) throws Exception { String result = xml; if (params != null && !params.isEmpty()) { for (Map.Entry<String, String> entry : params.entrySet()) { String name = "\\$" + entry.getKey(); Pattern pattern = Pattern.compile(name); Matcher matcher = pattern.matcher(result); if (matcher.find()) { result = matcher.replaceAll(entry.getValue()); } } } return result; } /** * 解析XML文件 * @param inStream * @return * @throws Exception */ private static String parseResponseXML(InputStream inStream) throws Exception { XmlPullParser parser = Xml.newPullParser(); parser.setInput(inStream, "UTF-8"); int eventType = parser.getEventType();// 產(chǎn)生第一個事件 while (eventType != XmlPullParser.END_DOCUMENT) { // 只要不是文檔結束事件 switch (eventType) { case XmlPullParser.START_TAG: String name = parser.getName();// 獲取解析器當前指向的元素的名稱 if ("getMobileCodeInfoResult".equals(name)) { return parser.nextText(); } break; } eventType = parser.next(); } return null; } }</span>
最后注意,由于需要訪問網(wǎng)絡,需要加上權限
<span style="font-size:16px;"><uses-permission android:name="android.permission.INTERNET"/></span>
通過上面簡單的例子,相信大家已經(jīng)學習了如何在Android中調(diào)用WebService,最后運行效果:
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
- 在Android中訪問WebService接口的方法
- Android開發(fā)調(diào)用WebService的方法示例
- Android 中利用 ksoap2 調(diào)用 WebService的示例代碼
- Android ksoap調(diào)用webservice批量上傳多張圖片詳解
- Android 通過webservice上傳多張圖片到指定服務器詳解
- Android通過ksoap2傳遞復雜數(shù)據(jù)類型及CXF發(fā)布的webservice詳細介紹
- Android通過Webservice操作sqlserver數(shù)據(jù)庫實例代碼
- android調(diào)用WebService實例分析
- android中soap協(xié)議使用(ksoap調(diào)用webservice)
- android調(diào)用webservice接口獲取信息
相關文章
PagerSlidingTabStrip制作Android帶標簽的多界面滑動切換
這篇文章主要介紹了使用PagerSlidingTabStrip制作Android帶標簽的多界面滑動切換效果的方法,PagerSlidingTabStrip是GitHub上的一個開源項目,調(diào)用這個庫可以少寫不少代碼XD 需要的朋友可以參考下2016-04-04Android UI:ListView - SimpleAdapter實例詳解
這篇文章主要介紹了Android UI:ListView - SimpleAdapter實例詳解,SimpleAdapter是擴展性最好的適配器,可以定義各種你想要的布局,而且使用很方便,需要的朋友可以參考下2016-11-11