outTest3.jsp
페이지 정보
작성자 관리자 작성일 21-07-15 18:47 조회 375 댓글 0본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<title>Out Test</title>
</head>
<body>
<h2>Out 테스트</h2>
<table border="1">
<tr>
<td>autoFlush 여부</td>
<td><%=out.isAutoFlush() %></td>
</tr>
<tr>
<td>출력 버퍼의 크기</td>
<td><%=out.getBufferSize() %>바이트</td>
</tr>
<tr>
<td>출력 버퍼의 남은 양</td>
<td><%=out.getRemaining() %>바이트</td>
</tr>
</table>
</body>
</html>
추천0
댓글목록 0
등록된 댓글이 없습니다.