使用Android中的改造将数据发布到数组中

时间:2019-01-21 11:01:51

标签: java android arrays retrofit retrofit2

我要在android改造中发布一个数组,我必须在数组中发送三个字段的数据,但是我不明白该怎么做,我已经成功获取了这三个字段的数据,但是我很困惑如何在数组中的任何一个都可以帮助我提供示例代码。预先感谢。

profile_base64 = {
    name : abc.jpg
    type : image/jpg
    string : 8323583475dsfsdbvcnwe
};

我必须发布名称为profile_base64的数组,然后在该数组中我必须发送三个字段的数据,例如name typestring

1 个答案:

答案 0 :(得分:0)

  

API调用

dotnet.exe
  

Model.java

HashMap<String, Object> map = new HashMap<>();
    map.put("profile_base64", new Model("abc.jpg","image/jpg","8323583475dsfsdbvcnwe"));

JsonParser jsonParser = new JsonParser();
        Call<RestResponse<AccessToken>> call = apiInterface.apiName((JsonObject) jsonParser.parse(gson.toJson(map)));