這是我改造的Web服務發佈和接收一個字符串值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;
}
如何使這一派字符串數組和接收字符串數組沒有循環
你能解釋你的問題嗎? –
我想發送一個列表,例如這個mobileNumbes [],並收到另一個列表 – RealDEV