[JavaSpring] out
컴퓨터/JSP<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" buffer="5kb" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
int totalBuffer = out.getBufferSize();
int remainBuffer = out.getRemaining();
int useBuffer = totalBuffer - remainBuffer;
%>
총 버퍼 크기 : <%=totalBuffer %>byte<p/>
현재 버퍼 사용량 : <%=useBuffer %>byte<p/>
남은 버퍼 크기 : <%=remainBuffer %>byte<p/>
</body>
</html>
'컴퓨터 > JSP' 카테고리의 다른 글
[JavaSpring] application (0) | 2024.07.16 |
---|---|
[JavaSpring] session (2) | 2024.07.16 |
[JavaSpring] request_infoMethod (0) | 2024.07.16 |
[JavaSpring] request (0) | 2024.07.16 |
[JavaSpring] action_forward 혈액형 연습 문제 (12) | 2024.07.16 |