在Body请求中使用改进进行多部分图像上传

时间:2018-06-02 13:17:26

标签: android retrofit multipart

有人可以帮忙吗?我在改造中使用多部分方法将图像上传到服务器。我有字段名称“图像”,我必须上传图像。我用了

File file = new File("https://atgbcentral.com/data/out/61/4444184-anime-picture.jpg");
        RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), file);
        MultipartBody.Part imageFileBody = MultipartBody.Part.createFormData("image", file.getName(), requestBody);

但它没有用。

0 个答案:

没有答案