java_web/webapp/out.jsp
2024-12-09 22:17:48 +08:00

15 lines
374 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ page contentType="text/html;charset=gb2312" %>
<html><head><title>Out Example</title></head>
<body>
<h2>out对象的使用</h2>
<%
out.print("学习使用out对象");
int buffer = out.getBufferSize();
int available = out.getRemaining();
%>
<br>
out对象的类型为<%= out.getClass().getName() %><br>
BufferSize=<%= buffer %><br>
Available=<%= available %>
</body></html>