Android调用WebService
2401_85039686 2024-07-09 14:33:04 阅读 72
首先找到我们需要获取的服务,然后记录相关的参数:NameSpace(命名空间),SoapAction以及URL就不用说了,其他参数这样找:
此次实例将调用国内手机号码归属地查询WEB服务
首先点击下面的链接进入参数文档
http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx
参数文档如下:
点击getMoblieCodeInfo,进入页面,将页面中的SoapAction,NameSpace以及相关参数mark下!
4.导入jar包
5.布局文件如下:
<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:tools=“http://schemas.android.com/tools”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:orientation=“vertical”
android:padding=“5dp”
tools:context=“.MainActivity”>
<EditText
android:id=“@+id/edit_param”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:hint=“请输入查询的相关参数” />
<Button
android:id=“@+id/btn_attribution”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“号码归属地查询” />
<TextView
android:id=“@+id/txt_result”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginLeft=“5dp”
android:layout_marginTop=“5dp”
android:text=“结果显示:”
android:textSize=“16sp” />
6.实现代码如下:
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
public class MainActivity extends AppCompatActivity {
private EditText edit_param;
private Button btn_attribution;
private TextView txt_result;
private String result;
//定义获取手机信息的SoapAction与命名空间,作为常量
private static final String AddressnameSpace = “http://WebXml.com.cn/”;
//归属地查询相关参数
private static final String Addressurl = “http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx”;
private static final String Addressmethod = “getMobileCodeInfo”;
private static final String AddresssoapAction = “http://WebXml.com.cn/getMobileCodeInfo”;
//定义一个Handler用来更新页面:
private Handler handler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case 0x002:
txt_result.setText(“结果显示:\n” + result);
Toast.makeText(MainActivity.this, “号码归属地查询成功”, Toast.LENGTH_SHORT).show();
break;
}
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bindViews();
}
private void bindViews() {
edit_param = (EditText) findViewById(R.id.edit_param);
btn_attribution = (Button) findViewById(R.id.btn_attribution);
txt_result = (TextView) findViewById(R.id.txt_result);
btn_attribution.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_attribution:
new Thread(new Runnable() {
public void run() {
getland();
}
}).start();
break;
}
}
//定义一个获取号码归属地的方法:
public void getland() {
result = “”;
SoapObject soapObject = new SoapObject(AddressnameSpace, Addressmethod);
soapObject.addProperty(“mobileCode”, edit_param.getText().toString());
soapObject.addProperty(“userid”, “dabf121232143254854999dbfg”);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.bodyOut = soapObject;
envelope.dotNet = true;
envelope.setOutputSoapObject(soapObject);
HttpTransportSE httpTransportSE = new HttpTransportSE(Addressurl);
try {
httpTransportSE.call(AddresssoapAction, envelope);
//System.out.println(“调用WebService服务成功”);
} catch (Exception e) {
e.printStackTrace();
//System.out.println(“调用WebService服务失败”);
}
//获得服务返回的数据,并且开始解析
SoapObject object = (SoapObject) envelope.bodyIn;//System.out.println(“获得服务数据”);
result = object.getProperty(0).toString();//System.out.println(“获取信息完毕,向主线程发信息”);
handler.sendEmptyMessage(0x002);
}
}
Android开发除了flutter还有什么是必须掌握的吗?
相信大多数从事Android开发的朋友们越来越发现,找工作越来越难了,面试的要求越来越高了
除了基础扎实的java知识,数据结构算法,设计模式还要求会底层源码,NDK技术,性能调优,还有会些小程序和跨平台,比如说flutter,以思维脑图的方式展示在下图;
;//System.out.println(“获取信息完毕,向主线程发信息”);
handler.sendEmptyMessage(0x002);
}
}
Android开发除了flutter还有什么是必须掌握的吗?
相信大多数从事Android开发的朋友们越来越发现,找工作越来越难了,面试的要求越来越高了
除了基础扎实的java知识,数据结构算法,设计模式还要求会底层源码,NDK技术,性能调优,还有会些小程序和跨平台,比如说flutter,以思维脑图的方式展示在下图;
[外链图片转存中…(img-yvRavcuG-1719985027844)]
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。