2011-12-07 134 views

回答

2

我不知道trulia是什麼,如果你想使用SOAP web服務,你應該使用KSOAP2。谷歌它,你會發現很多教程如何使用它。

有很多pepol解釋它很好。

KSOAP2不適合你嗎? 查看HTTPClient for android。這裏是一個很好的http://lukencode.com/2010/04/27/calling-web-services-in-android-using-httpclient/

現在,谷歌和你找到你的答案! GL!!

+0

謝謝您的指導.. – Jalp

+0

烏爾歡迎!如果它解決問題,不要忘記標記爲答案! ;) –

0

您可以使用HttpClient連接webservice/webpage/remote-data。

這裏是一個示例代碼中使用,你可以從Android應用程序連接Web服務

try { 
    HttpClient client = new DefaultHttpClient(); 
    HttpGet method = new HttpGet(Url); 
    HttpResponse response = client.execute(method); 
    StatusLine status = response.getStatusLine(); 
    if (status.getStatusCode() == HttpStatus.SC_OK) { 
     ResponseHandler<String> responseHandler = new BasicResponseHandler(); 
     String responseBody = responseHandler.handleResponse(response); 
     return responseBody; 
    } 
    return null; 

} catch (Exception e) { 
    // TODO Auto-generated catch block 
    e.printStackTrace(); 
    return null; 
} 
相關問題