该方法用于获取 JSP 应答对象的输出流。
语法:
getOutputStream()
返回值:JSP 页面的输出流对象。
示例
<% ServletOutputStream os = response.getOutputStream(); os.write("<b>Java编程词典</b>".getBytes()); os.close(); %>
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22781.html