07applicationResource.jsp ์ฝ๋๋ด์ฉ
<%@page import="java.io.InputStreamReader"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
String resourcePath = "/resource/message/weekend.txt";
String realPath = application.getRealPath(resourcePath);
%>
์ค์ ํ์ผ ์์น : <%=realPath %> <br>
<%
//ํ์ผ ์ฝ์ด๋ณด๊ธฐ
char[] buff = new char[128];
int len=-1;
try(
InputStreamReader br = new InputStreamReader(application.getResourceAsStream(resourcePath),"utf-8")
){
while( (len=br.read(buff)) != -1) {
out.print(new String(buff,0,len));
}
}
%>
</body>
</html>