Android - 改造阵列

时间:2017-06-15 20:34:32

标签: java android

这是我的改版网络服务发布和接收字符串值

MainActivity

            Phone phone=new Phone();
            phone.phone=contactsString;
            WebService.getInstance().getApi().checkNumber(phone).enqueue(new Callback<MainResponse>() {
                @Override
                public void onResponse(Call<MainResponse> call, Response<MainResponse> response) {

                }

                @Override
                public void onFailure(Call<MainResponse> call, Throwable t) {
                }
            }); 

MainResponce.class

public class MainResponse {
    @SerializedName("status")
    public int status;
    @SerializedName("message")
    public String message;
}

Phone.class

public class Phone {

    @SerializedName("phone")
    public String[] phone;
}

如何使这发送一个字符串数组并接收一个没有循环的字符串数组

2 个答案:

答案 0 :(得分:0)

最好更改您的Web服务为了能够获取电话列表并在每个结果中返回结果列表和提及电话号码

答案 1 :(得分:0)

正如你所写,手机包括一个阵列。您可以轻松地将Phone类的实例发送到服务器。