Android+webService的连接

</pre><pre name="code" class="java"><div>  <span style="font-size:24px;"> 最近初步在搞android怎么去跟webservice的连接,调用参数返回。在这里发下我运行的源码。已测试,已成功! </span></div><div>
</div>
<span style="font-size:18px;">import android.widget.EditText;
public class LQserviceActivity extends Activity {
	/** Called when the activity is first created. */
	private Button button;
	private EditText editText;
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		button = (Button) findViewById(R.id.button);
		editText = (EditText) findViewById(R.id.edit);
		button.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				String show = editText.getText().toString();
				String showMessage = "";
				try {
					showMessage = getPhoneInfo(show);
					editText.setText(showMessage);
				} catch (XmlPullParserException e) {
				} catch (IOException e) {
					e.printStackTrace();
				}
			}

		});
	}
	public String getPhoneInfo(String phoneName) throws IOException,
			XmlPullParserException {
		// 获取URL
		String URL = "http://61.143.165.38/wlss.asmx";
		// 返回的查询结果
		String result = null;
		// 调用webservice接口的命名空间
		String namespace = "http://61.143.165.38/";
		// 调用的方法名
		String methodName = "HelloWorld";
		// webservice中SOAPAction的地址
		String SOAP_ACTION = "http://www.1008656.com/HelloWorld";
		// 获得返回请求对象
		SoapObject request = new SoapObject(namespace, methodName);
		// 设置需要返回请求对象方法的参数
		// request.addProperty("moblieCode",phoneName);
		// request.addProperty("userId","");
		// 设置soap的版本
		SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
				SoapEnvelope.VER11);
		// 设置是否调用的是dotNet开发的,这里如果设置为TRUE,那么在服务器端将获取不到参数值(如:将这些数据插入到数据库中的话)
		envelope.dotNet = true;
		envelope.bodyOut = request;
		AndroidHttpTransport hts = new AndroidHttpTransport(URL);
		// web service请求
		hts.call(SOAP_ACTION, envelope);
		// hts.call(null,envelope);
		// 得到返回结果
		Object o = envelope.getResponse();
		result = o.toString();
		return result;
	}
}</span>
<span style="font-size:18px;">
<strong>main.xml的源码如下:</strong></span>
<span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <!-- android:text="webservice的调用" -->
    <Button
        android:id="@+id/button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="点击" />
    <EditText
        android:id="@+id/edit"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
</LinearLayout>
</span>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值