WebContent -> message -> notice -> notice.txt





<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%@ page import="java.io.*"%>
<!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>Application 기본 객체 사용하여 자원 읽기</title>
</head>
<body>
	<%
		String resourcePath = "/message/notice/notice.txt";
	%>
	자원의 실제 경로:
	<br />
	<%=application.getRealPath(resourcePath)%>
	<br> ****************************
	<br>
	<%=resourcePath%>의 내용
	<br /> ****************************
	<br>
	<%
		BufferedReader br = null;
		char[] buff = new char[512];
		int len = -1;

		try {
			br = new BufferedReader(new InputStreamReader(
					application.getResourceAsStream(resourcePath)));
			while ((len = br.read(buff)) != -1) {
				out.print(new String(buff, 0, len));
			}
		} catch (IOException ex) {
			out.println("예외 발생 : " + ex.getMessage());
		} finally {
			if (br != null)
				try {
					br.close();
				} catch (IOException ex) {
				}
		}
	%>
</body>
</html>



'JSP > 기본(Oracle)' 카테고리의 다른 글

<jsp:include> 액션 태그를 사용하여 페이지 모듈화  (0) 2012.05.30
JSP 기본 객체와 영역  (0) 2012.05.30
Servlet Context  (0) 2012.05.30
JSP 서버정보 출력, 로그 메세지 기록  (0) 2012.05.30
배포 구조  (0) 2012.05.30

+ Recent posts