• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

retrofit上传、下载文件

武飞扬头像
魔幻音
帮助1

上传文件:

接口方法:

    @POST("post")
    @Multipart
    Call<ResponseBody> upload(@Part MultipartBody.Part file);

具体使用:

Retrofit retrofit = new Retrofit.Builder().baseUrl("https://www.httpbin.org/").build();
    UploadService uploadService = retrofit.create(UploadService.class);

    @Test
    public void upload() throws IOException {
        File file = new File("D://desktop//1.txt");
        MultipartBody.Part part = MultipartBody.Part.createFormData("file1",
                "1.txt", RequestBody.create(MediaType.parse("text/plain"), file));

        Call<ResponseBody> call = uploadService.upload(part);
        System.out.println(call.execute().body().string());
    }

下载文件:

普通下载:
接口方法:

@GET
    Call<ResponseBody> download(@Url String url);

使用:

@Test
    public void downLoad() throws IOException {
        Response<ResponseBody> response = uploadService.download("http://ww3.sinaimg.cn/mw600/3ecd3787jw1e31uvhxzp8j.jpg")
                .execute();
        InputStream inputStream = response.body().byteStream();
        FileOutputStream fileOutputStream = new FileOutputStream("D://desktop//1.jpg");
        int len;
        byte[] buffer = new byte[4096];

        while ((len = inputStream.read(buffer)) != -1) {
            fileOutputStream.write(buffer, 0, len);
        }
        fileOutputStream.close();
        inputStream.close();
    }

依据下载地址,对得到的response.body获取字节流即可实现下载功能。

Rxjava下载:
接口方法:

	@GET
    Flowable<ResponseBody> downloadRxjava(@Url String url);

具体使用:

Retrofit retrofit1 = new Retrofit.Builder().baseUrl("https://www.httpbin.org/")
            .addCallAdapterFactory(RxJava3CallAdapterFactory.create()).build();
    UploadService uploadService1 = retrofit1.create(UploadService.class);
    @Test
    public void downloadRxjava() {
        uploadService1.downloadRxjava("http://ww3.sinaimg.cn/mw600/3ecd3787jw1e31uvhxzp8j.jpg")
            .map(new Function<ResponseBody, File>() {
                @Override
                public File apply(ResponseBody ResponseBody) throws Throwable {
                    InputStream inputStream = ResponseBody.byteStream();
                    File file = new File("D://desktop//1.jpg");
                    FileOutputStream fileOutputStream = new FileOutputStream(file);
                    int len;
                    byte[] buffer = new byte[4096];

                    while ((len = inputStream.read(buffer)) != -1) {
                        fileOutputStream.write(buffer, 0, len);
                    }
                    fileOutputStream.close();
                    inputStream.close();
                    return file;
                }
            }).subscribe(new Consumer<File>() {
            @Override
            public void accept(File file) throws Throwable {
                //do
            }
        });
        while (true);
    }
学新通

用RxJava就可以直接在apply中对文件进行下载操作。在搭配嵌套请求才能下载的情况下使用。

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgfkeek
系列文章
更多 icon
同类精品
更多 icon
继续加载