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
반응형
'IT > JSP' 카테고리의 다른 글
[JSP] - 19. 기본 객체와 영역(scope) - 2 (0) | 2020.07.23 |
---|---|
[JSP] - 18. application - 파일 읽는 방법(기본 객체 사용) (0) | 2020.07.22 |
[JSP] - 16. application - 로그 기록 파일 만드는 방법 (0) | 2020.07.22 |
[JSP] - 15. application - 서버정보 얻는 방법 (0) | 2020.07.22 |
[JSP] - 14. application(기본객체), 초기화 파리미터 사용법 (0) | 2020.07.22 |
댓글