현재 경로와 컨텍스트(Context)까지 String(문자열)으로 만들기

By | 8월 23, 2008

1. String으로 만들기

    "http://"+request.getServerName()+":"+request.getServerPort()+request.getContextPath()


2. StringBuffer로 만들기

StringBuffer sb = new StringBuffer("http://");
sb.append(request.getServerName());
sb.append(":");
sb.append(request.getServerPort());
sb.append(request.getContextPath());

만들어진 예) http://localhost:9000/bruce

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments