retrofit 上传文件 跟参数
Posted libing029
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了retrofit 上传文件 跟参数相关的知识,希望对你有一定的参考价值。
@Multipart @POST("postFied") Call<Void> postFied(@PartMap Map<String,String> map, @Part MultipartBody.Part file); File file=new File("/sdcard/shumei.txt"); RequestBody body=RequestBody.create(MediaType.parse("application/octet-stream"),file); // RequestBody body=RequestBody.create(MediaType.parse("multipart/form-data"),file); MultipartBody.Part part =MultipartBody.Part.createFormData("file",file.getName(),body); Map<String, String> map = new HashMap<>(); map.put("name","123456"); Call<Void> liing = api.postFied(map,part);
以上是关于retrofit 上传文件 跟参数的主要内容,如果未能解决你的问题,请参考以下文章
Android实战----基于Retrofit实现多图片/文件图文上传
Android Retrofit 实现(图文上传)文字(参数)和多张图片一起上传
Android Retrofit 实现(图文上传)文字(参数)和多张图片一起上传
Android实战----基于Retrofit实现多图片/文件图文上传
Android实战----基于Retrofit实现多图片/文件图文上传
如何使用 Retrofit 将图像文件从 Android 上传到 ASP.NET(Web Services-ASMX) 上传文件夹