如何将整数的ArrayList添加到多部件主体

How to add ArrayList of Integers to MultipartBody(如何将整数的ArrayList添加到多部件主体)
本文介绍了如何将整数的ArrayList添加到多部件主体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个整数的ArrayList,需要放到我的MultipartBody.Builder中。我尝试过使用.addFormDataPart的不同方法,甚至尝试将arraylist转换为JSONObject,然后将JSONObject转换为字符串,但我的服务器会返回如下错误:

{"tag":["类型不正确。预期的主键值,收到的字符串"]}

我在服务器上的json格式如下

{"id":1, 
 "tags" : [
           {"id":1}, 
           {"id":2}
          ]
}

在Android Studio中,我尝试放入一个整数的ArrayList,其中包含如下所示的标签id

okhttp3.RequestBody fileRequestBody =  RequestBody.create(MediaType.parse("text/csv"), file); 

okhttp3.RequestBody requestBody = new MultipartBody.Builder()
                        .setType(MultipartBody.FORM)
                        .addFormDataPart("id", projecID)
                        .addFormDataPart("tags", tagIDArray")
                        .addFormDataPart("file", "file", fileRequestBody).build();

推荐答案

我已经想明白了,如果以后有人遇到这个问题,我会发一个回复。

非常简单,您可以迭代整数数组并通过.addFormDataPart("tag",tag IDArray.get(I))将每个整数添加到MultipartBody.Builder中,其中i是索引。以下是我现在在项目中使用的工作代码。

o

okhttp3.MultipartBody.Builder requestBodyBuilder = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("id", projecID)
.addFormDataPart("file", "file", fileRequestBody");

for(int i=0; i<tagIDdArray.size(); ++i){
    requestBodyBuilder.addFormDataPart("tags", tagIDArray.get(i));
}

RequestBody requestBody = requestBodyBuilder.build()

然后您可以在请求中正常使用请求正文,它将作为数组工作

这篇关于如何将整数的ArrayList添加到多部件主体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)