본문 바로가기
STUDY/JSP

Jsp 4일차 - buffer

by Anne of Green Galbes 2019. 2. 15.

1. 한번에 화면에 띄울 수 있는 양 : 8kb


<%@ page contentType="text/html; charset=UTF-8"%>

<%@ page buffer="8kb" autoFlush="true"%>

<%

request.setCharacterEncoding("UTF-8");

%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>


<body>

<%for(int i=1;i<1000;i++){%>

1234

<%} %>

</body>


</html>


'STUDY > JSP' 카테고리의 다른 글

Jsp 6일차 - 전송방식  (0) 2019.02.19
Jsp5일차 - Get방식과 Post방식  (0) 2019.02.15
Jsp 4일차 - submit & button  (0) 2019.02.15
Jsp 4일차 - jsp영역 안에서 html사용  (0) 2019.02.15
Jsp 4일차 - request & response  (0) 2019.02.14

댓글