当前位置:   article > 正文

Java以流的形式返回前端_java返回文件流给前端

java返回文件流给前端

前言:为了实现像ChatGPT一样的效果:文字进行逐个显示,后端返回的时候需要以流的形式

目录

一、字符串流

二、文件流


一、字符串流

  1. @PostMapping("returnStream")
  2. public void returnStream(HttpServletResponse response) throws IOException {
  3. String message = "我是一段等待已流形式返回的文字";
  4. // 以流的形式返回
  5. ServletOutputStream out = null;
  6. ByteArrayOutputStream baos = null;
  7. try {
  8. InputStream inStream = new ByteArrayInputStream(message.getBytes());
  9. byte[] buffer = new byte[1024];
  10. int len;
  11. baos = new ByteArrayOutputStream();
  12. while ((len = inStream.read(buffer)) != -1) {
  13. baos.write(buffer, 0, len);
  14. }
  15. out = response.getOutputStream();
  16. out.write(baos.toByteArray());
  17. } catch (Exception e) {
  18. e.printStackTrace();
  19. } finally {
  20. Objects.requireNonNull(baos).flush();
  21. baos.close();
  22. Objects.requireNonNull(out).flush();
  23. out.close();
  24. }
  25. }

 

二、文件流

  1. ServletOutputStream out = null;
  2. ByteArrayOutputStream baos = null;
  3. try {
  4. File file=new File(filename);
  5. InputStream inStream=new FileInputStream(file);
  6. byte[] buffer = new byte[1024];
  7. int len;
  8. baos = new ByteArrayOutputStream();
  9. while ((len = inStream.read(buffer)) != -1) {
  10. baos.write(buffer, 0, len);
  11. }
  12. out = response.getOutputStream();
  13. out.write(baos.toByteArray());
  14. } catch (Exception e) {
  15. e.printStackTrace();
  16. } finally {
  17. baos.flush();
  18. baos.close();
  19. out.flush();
  20. out.close();
  21. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/207111
推荐阅读
相关标签
  

闽ICP备14008679号