servlet - getRealPath, getContextPath

목적

서버를 열었을 때 실제 경로를 알아보기 위한 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

좋은 웹페이지 즐겨찾기