android用webservice连接sqlserver数据库 .

以前做的东西,只要用数据库的都是在项目里自己重新做一份数据。但是这种方法是很不可取的,首先,手机内存不会很大,把数据表建在项目里无疑又增大了程序。这样一来手机的运行速度可想而知。其次,数据大的时候还是放在数据库比较合适,不仅方便而且可达到同步的效果。

       很多应用软件所依存的数据都是在数据库里,这时方便精简又可同步到数据库的方法只有连接数据库了。这里就是用webservice连接数据库即soap协议来达到获取数据库信息的目的。

       做了个小例子:

布局:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"   
  5.     android:orientation="vertical">  
  6.   
  7.     <TextView  
  8.         android:layout_width="wrap_content"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/hello_world"    
  11.         tools:context=".MainActivity" />  
  12.    <LinearLayout   
  13.        android:layout_width="wrap_content"  
  14.        android:layout_height="wrap_content"  
  15.        android:orientation="horizontal">  
  16.        <EditText   
  17.            android:id="@+id/name"  
  18.            android:layout_width="200dp"  
  19.            android:layout_height="wrap_content"/>  
  20.     <Button   
  21.         android:id="@+id/search"  
  22.           
  23.         android:layout_width="wrap_content"  
  24.         android:layout_height="wrap_content"  
  25.         android:text="@string/search"/>  
  26.     </LinearLayout>  
  27.     <TextView android:id="@+id/result"  
  28.         android:layout_width="fill_parent"  
  29.         android:layout_height="wrap_content"/>  
  30.   
  31. </LinearLayout>  
<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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"  
        tools:context=".MainActivity" />
   <LinearLayout 
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:orientation="horizontal">
       <EditText 
           android:id="@+id/name"
           android:layout_width="200dp"
           android:layout_height="wrap_content"/>
    <Button 
        android:id="@+id/search"
        
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/search"/>
    </LinearLayout>
    <TextView android:id="@+id/result"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>
建一个工具类SOAPUtil:

  1. public class SOAPUtil {  
  2.     public static Object doTransport(final String wsdUrl, final String webMethod) {  
  3.         String nameSpace = "http://tempuri.org/";//一般都是默认的  
  4.         SoapObject soapObject = new SoapObject(nameSpace, webMethod);  
  5.         // soapObject.addProperty(propertyInfo)   
  6.         System.out.println();  
  7.         SoapSerializationEnvelope soapSerializationEnvelope = new SoapSerializationEnvelope(  
  8.                 SoapEnvelope.VER11);  
  9.         soapSerializationEnvelope.bodyIn = soapObject;  
  10.         soapSerializationEnvelope.dotNet = true;  
  11.         soapSerializationEnvelope.setOutputSoapObject(soapObject);  
  12.         HttpTransportSE httpTransportSE = new HttpTransportSE(wsdUrl);  
  13.         String SOAP_ACTION = "http://tempuri.org/" + webMethod;  
  14.         //输出soapAction   
  15.         System.out.println(SOAP_ACTION);  
  16.         try {  
  17.             httpTransportSE.call(SOAP_ACTION, soapSerializationEnvelope);  
  18.             System.out.println("调用结束");  
  19.             //输出响应   
  20.             System.out.println(soapSerializationEnvelope.getResponse());  
  21.             if (soapSerializationEnvelope.getResponse() != null) {  
  22.                 SoapObject result = (SoapObject) soapSerializationEnvelope  
  23.                         .getResponse();  
  24.                 //输出结果   
  25.                 for (int i = 0; i < result.getPropertyCount(); i++) {  
  26.                     System.out.println("result [" + i + "] = "+ result.getProperty(i).toString());  
  27.                 }  
  28.                   
  29.                 return result;  
  30.             }  
  31.         } catch (IOException e) {  
  32.             System.out.println("IOException");  
  33.             e.printStackTrace();  
  34.         } catch (XmlPullParserException e) {  
  35.             e.printStackTrace();  
  36.         }  
  37.         return null;  
  38.           
  39.   
  40.     }  
  41.       
  42.   
  43.   
  44. }  
public class SOAPUtil {
	public static Object doTransport(final String wsdUrl, final String webMethod) {
		String nameSpace = "http://tempuri.org/";//一般都是默认的
		SoapObject soapObject = new SoapObject(nameSpace, webMethod);
		// soapObject.addProperty(propertyInfo)
		System.out.println();
		SoapSerializationEnvelope soapSerializationEnvelope = new SoapSerializationEnvelope(
				SoapEnvelope.VER11);
		soapSerializationEnvelope.bodyIn = soapObject;
		soapSerializationEnvelope.dotNet = true;
		soapSerializationEnvelope.setOutputSoapObject(soapObject);
		HttpTransportSE httpTransportSE = new HttpTransportSE(wsdUrl);
		String SOAP_ACTION = "http://tempuri.org/" + webMethod;
		//输出soapAction
		System.out.println(SOAP_ACTION);
		try {
			httpTransportSE.call(SOAP_ACTION, soapSerializationEnvelope);
			System.out.println("调用结束");
			//输出响应
			System.out.println(soapSerializationEnvelope.getResponse());
			if (soapSerializationEnvelope.getResponse() != null) {
				SoapObject result = (SoapObject) soapSerializationEnvelope
						.getResponse();
				//输出结果
				for (int i = 0; i < result.getPropertyCount(); i++) {
					System.out.println("result [" + i + "] = "+ result.getProperty(i).toString());
				}
				
				return result;
			}
		} catch (IOException e) {
			System.out.println("IOException");
			e.printStackTrace();
		} catch (XmlPullParserException e) {
			e.printStackTrace();
		}
		return null;
		

	}
	


}

主要实现方法:

  1. public class MainActivity extends Activity {  
  2.     private Button searchs;  
  3.     private TextView results;  
  4.   
  5.     @Override  
  6.     public void onCreate(Bundle savedInstanceState) {  
  7.         super.onCreate(savedInstanceState);  
  8.         setContentView(R.layout.activity_main);  
  9.         searchs=(Button) findViewById(R.id.search);  
  10.         results=(TextView) findViewById(R.id.result);  
  11.         searchs.setOnClickListener(new View.OnClickListener() {  
  12.               
  13.             @Override  
  14.             public void onClick(View v) {  
  15.                 //服务器地址   
  16.                 String wsdUrl="http://192.168.1.195:88/service1.asmx";  
  17.                 //方法名   
  18.                 String method="SelectAll";  
  19.                 Object result=SOAPUtil.doTransport(wsdUrl, method);  
  20.                 results.setText(result.toString());  
  21.                   
  22.             }  
  23.         });  
  24.     }  
  25.   
  26.     @Override  
  27.     public boolean onCreateOptionsMenu(Menu menu) {  
  28.         getMenuInflater().inflate(R.menu.activity_main, menu);  
  29.         return true;  
  30.     }  
  31. }  
public class MainActivity extends Activity {
	private Button searchs;
	private TextView results;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        searchs=(Button) findViewById(R.id.search);
        results=(TextView) findViewById(R.id.result);
        searchs.setOnClickListener(new View.OnClickListener() {
			
			@Override
			public void onClick(View v) {
				//服务器地址
				String wsdUrl="http://192.168.1.195:88/service1.asmx";
				//方法名
				String method="SelectAll";
				Object result=SOAPUtil.doTransport(wsdUrl, method);
				results.setText(result.toString());
				
			}
		});
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

以上这些是我们在客户端这边的必要步骤,除此之外还需要服务器给出接口(接口名即activity里的方法名)。这里我没有写接口,接口其实很简单各种编程语言都可以,主要就是sql操作语句,写完部署到服务器即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值