亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Cloud Feign接口返回流的實現

發布時間:2020-10-15 17:27:42 來源:腳本之家 閱讀:593 作者:java干貨 欄目:編程語言

服務提供者

@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);

服務消費者

  @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) {

    }
  }

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

同德县| 多伦县| 休宁县| 芜湖县| 海盐县| 抚顺县| 长春市| 深泽县| 灵寿县| 玉屏| 吴堡县| 辛集市| 同德县| 延安市| 儋州市| 咸丰县| 河西区| 马边| 宜都市| 阿拉善右旗| 浪卡子县| 孟津县| 固原市| 柳林县| 彭州市| 洪洞县| 鹰潭市| 香格里拉县| 福州市| 资兴市| 堆龙德庆县| 家居| 云和县| 甘南县| 辽源市| 饶阳县| 中西区| 民丰县| 古浪县| 弥勒县| 丰都县|