編輯:Android開發實例
某些情況下我們可能需要與Mysql或者Oracle數據庫進行數據交互,有些朋友的第一反應就是直接在Android中加載驅動然後進行數據的增刪改查。我個人不推薦這種做法,一是手機畢竟不是電腦,操作大量數據費時費電;二是流量貴如金那。我個人比較推薦的做法是使用Java或PHP等開發接口或者編寫WebService進行數據庫的增刪該查,然後Android調用接口或者WebService進行數據的交互。本文就給大家講解在Android中如何調用遠程服務器端提供的WebService。
既然是調用WebService,我們首先的搭建WebService服務器。為了便於操作,我們就使用網上免費的WebService進行學習。
下面演示的就是如何通過該網站提供的手機號碼歸屬地查詢WebService服務查詢號碼歸屬地
首先,將請求消息保存在XML文件中,然後使用$替換請求參數,如下:
mobilesoap.xml
<?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>
其次,設計MainActivity布局文件,
main.xml
<?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>
下面貼出MainActivity,
在Android中調用WebService還是比較簡單的:請求webservice,獲取服務響應的數據,解析後並顯示。
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;
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);
// 占位符參數
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();// 產生第一個事件
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;
}
}
最後注意,由於需要訪問網絡,需要加上權限
<uses-permission android:name="android.permission.INTERNET"/>
通過上面簡單的例子,相信大家已經學習了如何在Android中調用WebService
Android應用程序可以在許多不同地區的許多設備上運行。為了使應用程序更具交互性,應用程序應該處理以適合應用程序將要使用的語言環境方面的文字,數字,文件等。在本章中,我
天哪,這篇文章終於說道如何自定義權限了,左盼右盼,其實這個自定義權限相當easy。為了方便敘述,我這邊會用到兩個app作為例子示范。 Permission App
Android應用程序可以在許多不同地區的許多設備上運行。為了使應用程序更具交互性,應用程序應該處理以適合應用程序將要使用的語言環境方面的文字,數字,文件等。在本章中,我
Android提供了許多方法來控制播放的音頻/視頻文件和流。其中該方法是通過一類稱為MediaPlayer。Android是提供MediaPlayer類訪問內置的媒體播放