본문 바로가기
웹프로그래밍/JSP

출력버퍼

by 폴더맨 2024. 6. 8.

출력버퍼1

<%@ page language="java" contentType="text/html; charset=EUC-KR"%>
<%@ page buffer="1kb" autoFlush="true"%>
<html>
<head>
<title>autoFlush 예제</title>
</head>
<body>
    <%
        for (int i = 0; i < 1000; i++)
            out.print("1234");
    %>
</body>
</html>

 

출력버퍼2

<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ page buffer="1kb" autoFlush="true" %>
<html>
<head>
<title>autoFlush 예제</title>
</head>
<body>
	<%
		for (int i = 0; i < 1000; i++)
			out.print("1234" + " ");
	%>
</body>
</html>

 

 

세상을 링크하라!!! 모든 링크를 한 자리에...
링크닷컴: https://linkdotcom.mycafe24.com/

 

유용한 링크, 링크닷컴 #무료 #링크사이트 #링크사이트

컴퓨터 및 일반 유용한 링크들을 모아 놓았습니다. 지금 바로 확인하세요!

linkdotcom.mycafe24.com

 

'웹프로그래밍 > JSP' 카테고리의 다른 글

서버정보  (0) 2024.06.08
클라이언트 정보  (0) 2024.06.08
선언  (0) 2024.06.08
표현식  (0) 2024.06.08
스크립트릿  (0) 2024.06.08