SpringCloudFeign接口返回流的實現(xiàn)

服務(wù)提供者

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的綏中網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

@GetMapping("/{id}")
  public void queryJobInfoLogDetail(@PathVariable("id") Long id, HttpServletResponse response) {

    File file = new File("xxxxx");
    InputStream fileInputStream = new FileInputStream(file);
    OutputStream outStream;
    try {
      outStream = response.getOutputStream();

      byte[] bytes = new byte[1024];
      int len = 0;
      while ((len = fileInputStream.read(bytes)) != -1) {
        outStream.write(bytes, 0, len);
      }
      fileInputStream.close();
      outStream.close();
      outStream.flush();
    } catch (IOException e) {
      log.error("exception", e);
    }
  }

client 客戶端

@GetMapping(value = "/{id}", consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
  feign.Response queryJobInfoLogDetail(@PathVariable("id") Long id);

服務(wù)消費者

  @GetMapping("/{id}")
  public void queryJobInfoLogInfoList(@PathVariable("id") Long id, HttpServletResponse servletResponse) {

    Response response = apiServices.queryJobInfoLogDetail(id);
    Response.Body body = response.body();

    InputStream fileInputStream = null;
    OutputStream outStream;
    try {
      fileInputStream = body.asInputStream();
      outStream = servletResponse.getOutputStream();

      byte[] bytes = new byte[1024];
      int len = 0;
      while ((len = fileInputStream.read(bytes)) != -1) {
        outStream.write(bytes, 0, len);
      }
      fileInputStream.close();
      outStream.close();
      outStream.flush();
    } catch (Exception e) {

    }
  }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

本文名稱:SpringCloudFeign接口返回流的實現(xiàn)
URL標(biāo)題:http://muchs.cn/article18/ighggp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開發(fā)、標(biāo)簽優(yōu)化、網(wǎng)站設(shè)計小程序開發(fā)、網(wǎng)站建設(shè)定制網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運營