android調用web
① android怎樣調用webService
使用Ksoup.jar包可以實現webservice的調用
參考代碼:
String result = null;
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.bodyOut = soapObject;
String endPoint = 地址後綴//如WebService/AppService.asmx
HttpTransportSE transportSE = new HttpTransportSE(endPoint);
SoapObject object = null;
transportSE.call(地址 + soapObject.getName(),
envelope);
object = (SoapObject) envelope.bodyIn;
result = object.getProperty(0).toString();
附上ksoup包
② Android 使用KSOAP2調用WebService
android 利用ksoap2方式連接webservice(2010-04-16 16:36:25)轉載標簽:androidksoap2webserviceit 分類:Android
利用J2SE的ksoap2標准,我也來做一個山寨版本的android連接webservice。因為soap封裝的關系,android application在接收到數據後不能夠正確的按照J2SE的標准來獲取。
在運用之前,我們先要引導兩個jar進入工程的buildpath
這兩個jar包都可以在網上查到下載,引導完後再做一項准備工作。弄清楚已發布的webservice的地址,以及封裝的方式。比如:
webservice介面: http://192.168.0.2:8080/axis2/services/Manager?wsdl (順便說明一下,在android當中,不能寫localhost,必須寫清楚PC機當前的網路IP)
webservice封裝: http://ws.apache.org/axis2
都了解了過後,說明已經做好准備了。
下面就介紹一下android如何獲取webservice封裝數據。。
引入ksoap2中以封裝好的類
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.AndroidHttpTransport;
在類中定義webservice的介面地址以及解析方式並且定義要調用的webservice中的函數
private static final String URL = " http://192.168.0.2:8080/axis2/services/Manager?wsdl";
private static final String NAMESPACE = " http://ws.apache.org/axis2";
private static final String METHOD_NAME = "GetMyFriends";
這個信息我們可以在webservice中查到
<xs:element name="GetMyFriends">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="userId" type="xs:int"/>
<xs:element minOccurs="0" name="password" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
接下來開始做對webservice請求數據的工作,請求webservice函數以及封裝要用的兩個參數(userId和password)
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
request.addProperty("userId", "123456");
request.addProperty("password", "test");
之後我們給定義發送數據的信封的封裝格式
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope( SoapEnvelope.VER11 );
發出請求
envelope.setOutputSoapObject(request);
AndroidHttpTransport aht = new AndroidHttpTransport(URL);
aht.call(null, envelope);
接著就可以定義一個SoapObject類型的實例去獲取我們返回來的數據
SoapObject so = (SoapObject) envelope.bodyIn;
這里如果是返回來的數據只有一行並且只有一個值,比如驗證函數,返回boolean類型的話,操作比較簡單,String getReturn= so.getProperty("return"); 這個getReturn就是你要獲取的值。
但是如果返回來是多行的值的話,這個方法就不行了,我們必須對返回來的信息做一些解析。我曾試過用J2SE的標准方式來獲取,但是會報錯,最主要的可能是他的方式在android當中不能使用。所以在這里我用了正則表達式這種方式來進行數據的解析,我們先來看一下他返回的數據的結構是什麼情況。
GetMyFriendsResponse{return=FriendsMessage{ <br>permitList=anyType{nickName=我愛羅; singnature=null; userId=2; }; permitList=anyType{nickName=jack; singnature=null; userId=1004; }; permitList=anyType{nickName=admin; singnature=leo_admin; userId=1001; };};}
簡單看他很想Json結構,但是確不是。。。
就目前的解決方式,我只是通過規律來進行了正則表達式的解析:如解析上面的內容。
//首先取得permitList(好友)的個數
String testPattern = "permitList";
int resultlength = result.length();
cresult = cresult.replace(testPattern, "");
int lastlength = (resultlength - cresult.length()) / testPattern.length();
//取得每個permitList中的值。
String LoginReturn="", pattern="nickName=.*?;\\s*singnature=.*?;\\s*userId=.*?;";
//動態生成String 數組,存儲每個好友的信息
String[] GetFinalReturn = new String[lastlength];
for (int i=0;i<lastlength;i++){
LoginReturn = result.replaceFirst("^.*("+pattern+").*$", "$1");
GetFinalReturn[i] = LoginReturn;
result = result.replace(LoginReturn,"");
}
這個數組裡面存儲的格式就是nickName=admin; singnature=leo_admin; userId=1001;
這樣以來,我們可以根據"="和";"兩個符號之間做split操作就可以得到數據。
好了,到此連接webservice和解析返回來的數據的工作就做完了,雖然這個方式看起來很復雜,但是目前來說,用ksoap2方式來連接webservice暫時還沒有找到更有效的解決方式。。
③ android調用webservice介面都有什麼方式
android調用webservice介面的方法是利用第三方jar包完成。
1、首先如果想在Android平台上調用WebService需要依賴於第三方類庫:ksoap2 而在Android平台上,使用的是ksoap2 Android,一個高效,輕量級的SOAP開發包
④ android下打開Web瀏覽器的幾種常見的方法
android下打開Web瀏覽器的幾種常見的方法如下:
一。通過意圖實現瀏覽
//通過下述方法打開瀏覽器
java">privatevoidopenBrowser(){
//urlText是一個文本輸入框,輸入網站地址
//Uri是統一資源標識符
Uriuri=Uri.parse(urlText.getText().toString());
Intentintent=newIntent(Intent.ACTION_VIEW,uri);
startActivity(intent);
}
注意:輸入URL時,不要忘記「http://」部分。
二。利用視圖打開網頁,是通過調用WebKit瀏覽器引擎提供的WebView實現的。
具體源代碼如下:
<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns: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="@string/hello"
/>
<LinearLayoutandroid:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<EditText
android:layout_width="240dp"
android:layout_height="wrap_content"
android:id="@+id/etWebSite"
android:hint="輸入網址"
android:singleLine="true"
android:layout_marginRight="5dp"
/>
<Button
android:id="@+id/searchBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="搜索"
android:layout_marginRight="5dp"
/>
</LinearLayout>
<LinearLayoutandroid:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/backBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上一頁"
android:layout_marginRight="5dp"
/>
<Button
android:id="@+id/nextBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下一頁"
android:layout_marginRight="5dp"
/>
</LinearLayout>
<WebViewandroid:id="@+id/webView1"android:layout_width="match_parent"
android:layout_height="match_parent"></WebView>
</LinearLayout>
/res/src/com.myandroid
packagecom.myandroid;
importandroid.app.Activity;
importandroid.os.Bundle;
importandroid.view.View;
importandroid.webkit.URLUtil;
importandroid.webkit.WebView;
importandroid.widget.Button;
importandroid.widget.EditText;
importandroid.widget.Toast;
{
privateButtonschBtn,backBtn,nextBtn;
privateWebViewwebView;
privateEditTextmText;
@Override
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
schBtn=(Button)findViewById(R.id.searchBtn);
mText=(EditText)findViewById(R.id.etWebSite);
webView=(WebView)findViewById(R.id.webView1);
backBtn=(Button)findViewById(R.id.backBtn);
nextBtn=(Button)findViewById(R.id.nextBtn);
schBtn.setOnClickListener(newView.OnClickListener(){
publicvoidonClick(Viewv){
//TODOAuto-generatedmethodstub
//設置可以使用Javascript
webView.getSettings().setJavaScriptEnabled(true);StringstrURI=mText.getText().toString();
//檢測網站的合法性
if(URLUtil.isNetworkUrl(strURI)){
webView.loadUrl(strURI);
Toast.makeText(WebViewActivity.this,strURI,Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(WebViewActivity.this,"輸入非法網站 "+strURI,Toast.LENGTH_SHORT).show();
}
}
});
backBtn.setOnClickListener(newView.OnClickListener(){
publicvoidonClick(Viewv){
//TODOAuto-generatedmethodstub
if(webView.canGoBack()){
webView.goBack();
}
}
});
nextBtn.setOnClickListener(newView.OnClickListener(){
publicvoidonClick(Viewv){
//TODOAuto-generatedmethodstub
if(webView.canGoForward()){
webView.goForward();
}
}
});
}
}
同時還要在AndroidManifest.xml中添加訪問網際網路的許可權:
<uses-permission android:name="android.permission.INTERNET"/>
⑤ 如何利用Chrome devTools調試android手機上的web網站
利用Chrome devTools調試android手機上的web網站方法:
操作之前先准備好以下步驟:1、在Android手機上安裝Chrome(Chrome for Android)2、電腦系統安裝了最新版的Chrome 3、Android手機裝了USB驅動
一、安裝Android SDK
下載Android SDK,地址:http://developer.android.com/sdk/index.html,本人的機器是windows,下載的文件為adt-bundle-windows-x86,解壓並釋放到D:/soft/android/adt(你也可以選擇其他路徑)
二、允許Android 手機啟用USB調試
1、android系統設置:「設置」》「開發人員選項」》「USB調試」;
2、手機上Chrome瀏覽器設置:打開Chrome瀏覽器,點擊左下角菜單按鍵,「設置」》「開發者工具」》「啟用USB網頁調試」
三、運行Android SDK
1、設置環境變數:右擊「我的電腦」》「屬性」》「高級」》「環境變數」》編輯「PATH」變數值,在末尾添加「;D:softandroidadtsdkplatform-tools」
2、運行adb
打開cmd,輸入如下命令:
利用Chrome devTools調試android手機上的web網站成功了.
⑥ android開發怎麼調用瀏覽器打開一個鏈接
在安卓代碼中調用瀏覽器來打開相應的網頁,一般有以下幾種方式
調用默認瀏覽器。
其他瀏覽器。
自定義一個簡單的WebView瀏覽器。
【原理】
主要是通過代碼進行調用已有或者未有的瀏覽器進行打開相應的網頁進行瀏覽。
【詳細實現步奏】
一.調用默認瀏覽器
優缺點:部分手機可能連默認的瀏覽器都沒有。
Intentintent=newIntent();
//Intentintent=newIntent(Intent.ACTION_VIEW,uri);
intent.setAction("android.intent.action.VIEW");
Uricontent_url=Uri.parse("此處填鏈接");
intent.setData(content_url);
startActivity(intent);
二.其他瀏覽器,制定打開
缺點:必須知道打開的瀏覽器的包名,大部分用戶可能沒有安裝這些瀏覽器
Intentintent=newIntent();
intent.setAction("android.intent.action.VIEW");
Uricontent_url=Uri.parse("此處填鏈接");
intent.setData(content_url);
intent.setClassName("瀏覽器包名","瀏覽器首頁");
startActivity(intent);
三.自定義一個簡單的WebView瀏覽器
優缺點:推薦使用,不必擔心手機上是否有瀏覽器。
mWebView=(WebView)findViewById(R.id.baseweb_webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.setWebViewClient(newWebViewClient());
WebViewmyWebView=(WebView)findViewById(R.id.webview);
myWebView.loadUrl("xxx.com");
【最後】
每種方法根據個人需要進行選用,沒其他特別因素推薦使用第三種方案。
⑦ Android 使用KSOAP2調用axis2+rampart的webservice
使用KSOAP2調用WebService 按如下6步來調用WebService的方法。
1. 指定WebService的命名空間和調用的方法名,代碼如下:
SoapObject request = new SoapObject("http://service", "getName");
SoapObject類的第1個參數表示WebService的命名空間,可以從WSDL文檔中找到WebService的命名空間。第2個參數表示要調用的WebService方法名。
2. 設置調用方法的參數值,這一步是可選的,如果方法沒有參數,可以省略這一步。設置方法的參數值的代碼如下:
request.addProperty("param1", "value1");
request.addProperty("param2", "value2");
要注意的是,addProperty方法的第1個參數雖然表示調用方法的參數名,但該參數值並不一定與服務端的WebService類中的方法參數名一致,只要設置參數的順序一致即可。
3. 生成調用WebService方法的SOAP請求信息。該信息由SoapSerializationEnvelope對象描述,代碼如下:
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.bodyOut = request;
創建SoapSerializationEnvelope對象時需要通過SoapSerializationEnvelope類的構造方法設置SOAP協 議的版本號。該版本號需要根據服務端WebService的版本號設置。在創建SoapSerializationEnvelope對象後,不要忘了設置 SoapSerializationEnvelope類的bodyOut屬性,該屬性的值就是在第1步創建的SoapObject對象。
4. 創建HttpTransportSE對象。通過HttpTransportSE類的構造方法可以指定WebService的WSDL文檔的URL,代碼如下:
HttpTransportSE ht =
new HttpTransportSE("http://192.168.17.156:8080/axis2/services/SearchProctService?wsdl");
5. 使用call方法調用WebService方法,代碼如下:
ht.call(null, envelope);
call方法的第1個參數一般為null,第2個參數就是在第3步創建的SoapSerializationEnvelope對象。
6. 使用getResponse方法獲得WebService方法的返回結果,代碼如下:
SoapObject soapObject = (SoapObject) envelope.getResponse();