본문 바로가기
IT/JSP

[JSP] - 17. application - 파일 읽는 방법(절대경로)

by 차이나는 개발자 2020. 7. 22.
728x90
반응형

#application - 파일 읽는 방법(절대경로)

 

 

#JSP 페이지에서 웹 어플리케이션 폴더에 위치한 파일을 사용해야 할 때가 있다.

 

예제1) 절대 경로를 사용하여 지정한 자원을 읽어올 수 있다.

 

1. 읽어 올 로그 파일 생성(인코딩 주의, 예제는 ANSI로 설정)

 

 

2. 소스코드 작성

<%@page import="java.io.FileReader"%>
<%@page import="java.io.IOException"%>
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>절대 경로 사용하여 자원 읽기</title>
</head>
<body>
<%
	char[] buff = new char[128];
	int len = -1;
	
	String filePath ="c:\\test\\notice.txt";
	
	FileReader fr = null;
	try{
		fr = new FileReader(filePath);		
		while( (len = fr.read(buff)) != -1){
			out.println(new String(buff, 0 , len));
		}
	}catch(IOException e){
		e.printStackTrace();
	}finally{
		try{
			fr.close();
		}catch(Exception e){}
	}
%>
</body>
</html>

 

 

-결과화면

 

 

 

728x90
반응형

댓글