为了账号安全,请及时绑定邮箱和手机立即绑定

Java中流的关闭

Java中流的关闭

慕姐8265434 2019-05-21 09:52:02
1.response.getWriter().print("");2.PrintWriterout=response.getWriter();out.print("");out.close();第一种方式可以吗?流会自动关闭吗?
查看完整描述

2 回答

?
慕森卡

TA贡献1806条经验 获得超8个赞

response.getWriter().print("");不会自动关闭
response.getWriter源码
publicPrintWritergetWriter()
/**/throwsIOException
/**/{
/*213*/PrintWriterwriter=this.response.getWriter();
/*214*/if(isFinished()){
/*215*/this.response.setSuspended(true);
/**/}
/*217*/returnwriter;
/**/}
print方法源码
publicvoidprint(Strings){
if(s==null){
s="null";
}
write(s);
}
                            
查看完整回答
反对 回复 2019-05-21
  • 2 回答
  • 0 关注
  • 361 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信