我需要一个关于如何将输入数据从 Android 传递到 .net Web 服务以及将结果检索到 Android 应用程序的有效示例/教程。
请分享任何您认为与我的需求相关的指南、示例、教程的链接。
我需要一个关于如何将输入数据从 Android 传递到 .net Web 服务以及将结果检索到 Android 应用程序的有效示例/教程。
请分享任何您认为与我的需求相关的指南、示例、教程的链接。
您可以创建一个 Rest Webservice,这是一个教程,您可以使用 URI 传递输入数据,并且您应该计划您的 URI 应该如何,例如发布客户名称:
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "json/post-customer/{name}")]
void postCustomer(string name);
使用客户 ID 获取客户数据:
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "json/get-customer/{id}")]
Customer getCustomer(string id);
然后在托管您的网络服务之后,您需要使用 HTTP 客户端从您的 android 应用程序访问它,例如:
String uri = "uri to your service";
HttpClient httpclient = new DefaultHttpClient();
HttpGet request = new HttpGet(uri);
ResponseHandler<String> handler = new BasicResponseHandler();
String result = null;
try {
result = httpclient.execute(request, handler);
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
httpclient.getConnectionManager().shutdown();
之后,您应该在“结果”中有一个字符串,该字符串代表您的响应(json 或 xml)。
希望这些信息可以帮助你。
这里给小样本试试这个帖子
公共无效帖子(字符串appid,字符串custlogid,字符串cityareaid,字符串mosqname,字符串mosqid,字符串lat,字符串lon){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(globalconstant.URL_mosquepost);
UrlEncodedFormEntity form;
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(6);
nameValuePairs.add(new BasicNameValuePair("APPUDID", appid));
nameValuePairs.add(new BasicNameValuePair("CUSTLOGID", custlogid));
nameValuePairs.add(new BasicNameValuePair("CITYAREAID", cityareaid));
nameValuePairs.add(new BasicNameValuePair("CITYMOSQUENAME", mosqname));
nameValuePairs.add(new BasicNameValuePair("CITYMOSQUEID", "0"));
nameValuePairs.add(new BasicNameValuePair("LATITUDE", lat));
nameValuePairs.add(new BasicNameValuePair("longitude", lon));
try {
form = new UrlEncodedFormEntity(nameValuePairs,"UTF-8");
httppost.setEntity(form);
Log.d("myapp", "works till here. 2");
try {
HttpResponse response = httpclient.execute(httppost);
Log.d("myapp", "response " + response.getStatusLine().getStatusCode()+"\n"+EntityUtils.toString(response.getEntity()));
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}