servlet - getRealPath, getContextPath

ino5·2021년 6월 2일
0
post-thumbnail

목적

서버를 열었을 때 실제 경로를 알아보기 위한 getRealPath를 사용해보겠습니다.


코드

		String a = request.getSession().getServletContext().getRealPath("");
		String b = request.getSession().getServletContext().getRealPath("fileSave");
		String c = request.getContextPath();
		System.out.println(a);
		System.out.println(b);
		System.out.println(c);

결과

C:\Users\user\eclipse-workspace.metadata.plugins\org.eclipse.wst.server.core\tmp3\wtpwebapps\project222\
C:\Users\user\eclipse-workspace.metadata.plugins\org.eclipse.wst.server.core\tmp3\wtpwebapps\project222\fileSave
/project222

profile
지금은 네이버 블로그만 해요... https://blog.naver.com/chero77

0개의 댓글