Android - Retrofit 实现图(多)文上传提交

 

Android - Retrofit 实现图(多)文上传提交

标签: retrofit
  46人阅读  评论(0)  收藏  举报
  分类:
4. 移动端(154)    --> 4.5 android开发经验(12) 

目录(?)[+]

1. 使用 Retrofit 的 partmap实现

比如我们的需求是 修改用户头像和用户姓名;

如果同时需要上传头像和用户名,需要使用 PartMap 进行操作;

@Multipart
    @PUT("/myuser/info/update/")
    Observable updateUserInfo(@PartMap Map params);
  • 1
  • 2
  • 3
  • 4
  • 1
  • 2
  • 3
  • 4

如果仅仅是上传头像则可以使用 Part 就可以 :

 @Multipart
    @PUT("/myuser/info/update/")
    Observable updateUserInfo(@Part("photo\";filename=\"file.jpg\"") RequestBody photo);
  • 1
  • 2
  • 3
  • 4
  • 1
  • 2
  • 3
  • 4

如果你想使用 Part 同时上传头像和修改用户信息则也是可以的!!

比如:


  @Multipart
    @PUT("/myuser/info/update/")
    Observable updateUserInfo(@Part("photo") RequestBody photo, @Part("name") RequestBody name);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

但一定要指定图片的名称: filename;


2. 上传图片和文字

注意事项:上传文字内容需要指定 text/plain ; 图片 : 要加上 filename

定义 requestbody

// image request body : 多张图片定义多个
  RequestBody requestFile =
                RequestBody.create(MediaType.parse("image/png"), file);
        RequestBody requestDesc =
                RequestBody.create(MediaType.parse("text/plain"), userName);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

如果有多张图片的话,建议使用 PartMap 进行操作

  Map bodys = new HashMap<>();
        bodys.put("first_name", requestDesc);
        bodys.put("photo\";filename=\"" + file.getName(), requestFile);
          bodys.put("photo1\";filename=\"" + file.getName(), requestFile1);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

上传方法,和平时使用的 retrofit 一样;

userServer.updateUserInfo(requestFile, requestDesc);
  • 1
  • 1

你可能感兴趣的:(android)