本文介绍了如何使用离子库发布多个图像文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用此代码在服务器上上传单个图像文件.
I am using this code to upload single image file on server.
但是我需要一次上传多个'n'个文件
But i need to upload multiple 'n' number of files at once
Ion.with(MainActivity.this)
.load(Constant.UPLOAD_IMG)
.setMultipartFile("UploadForm[imageFiles]", imgFile.getName(), imgFile)
.asJsonObject()
.setCallback(new FutureCallback<JsonObject>() {
@Override
public void onCompleted(Exception e, JsonObject result) {
}
});
我试图单独获得MultipartBodyBuilder.
I tried to get MultipartBodyBuilder separately.
MultipartBodyBuilder body = Ion.with(MainActivity.this)
.load(Constant.UPLOAD_IMG);
body.setMultipartFile("UploadForm[imageFiles]", imgFile.getName(), imgFile);
推荐答案
使用addMultipartParts添加FilePart或StringParts的列表.
Use addMultipartParts to add a list of FilePart or StringParts.
这篇关于如何使用离子库发布多个图像文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!