728x90
반응형
예) 현재 페이지의 주소가 http://localhost:8080/test/index.jsp
import javax.servlet.http.HttpServletRequest;
- request.getRequestURI(); <- 프로젝트 경로~ 파일까지의 경로값(예: /test/index.jsp)
- request.getContextPath(); <- only 프로젝트 경로값(예: /test)
- request.getRequestURL(); <- 전체 경로(예 : http://localhost:8080/test/index.jsp)
- request.getServletPath(); <- only 파일 (예 : /index.jsp)
#추가로, split 메서드를 사용하면 url 문자열 중에서 원하는 값을 뽑아낼 수 있다.
728x90
'스마트웹앱콘텐츠전문가 > JAVA' 카테고리의 다른 글
[날짜 비교]after (0) | 2018.04.23 |
---|---|
[파일 이어쓰기]FileWriter 사용 (0) | 2018.01.16 |
[IP관련]HOSTIP 구하기 (0) | 2017.09.12 |
[파일입출력]파일 클래스 (0) | 2017.09.12 |
[파일업로드]InputStream 관련... (0) | 2017.09.12 |