Java以流的形式返回前端
短信预约 -IT技能 免费直播动态提醒
前言:为了实现像ChatGPT一样的效果:文字进行逐个显示,后端返回的时候需要以流的形式。
目录
一、字符串流
@PostMapping("returnStream") public void returnStream(HttpServletResponse response) throws IOException { String message = "我是一段等待已流形式返回的文字"; // 以流的形式返回 ServletOutputStream out = null; ByteArrayOutputStream baos = null; try { InputStream inStream = new ByteArrayInputStream(message.getBytes()); byte[] buffer = new byte[1024]; int len; baos = new ByteArrayOutputStream(); while ((len = inStream.read(buffer)) != -1) { baos.write(buffer, 0, len); } out = response.getOutputStream(); out.write(baos.toByteArray()); } catch (Exception e) { e.printStackTrace(); } finally { Objects.requireNonNull(baos).flush(); baos.close(); Objects.requireNonNull(out).flush(); out.close(); } }
二、文件流
ServletOutputStream out = null;ByteArrayOutputStream baos = null;try {File file=new File(filename);InputStream inStream=new FileInputStream(file);byte[] buffer = new byte[1024];int len;baos = new ByteArrayOutputStream();while ((len = inStream.read(buffer)) != -1) {baos.write(buffer, 0, len);}out = response.getOutputStream();out.write(baos.toByteArray());} catch (Exception e) {e.printStackTrace();} finally {baos.flush();baos.close();out.flush();out.close();}
来源地址:https://blog.csdn.net/wenxingchen/article/details/130081401
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341