如何将数组从android发送到dotnet webservice

时间:2015-09-11 07:39:39

标签: android asp.net web-services

我有多个值,我想从android发送到DotNet Webservice。

所有值都存储在数组中。

Dotnet方法代码:

[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)]
public void setApprovedEmp(string[] arrCheckedEmpIds)
{
     // Use array here.
}

Android代码:

String[] arrIds = { "1009", "1001", "1012" }; // Array data is dynamic, not fix size
parameters.add(new BasicNameValuePair("arrCheckedEmpIds", arrIds));

0 个答案:

没有答案