웹프로그래밍/JSP

출력버퍼

폴더맨 2024. 6. 8. 05:50

출력버퍼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