<input type="checkbox" name="strviewstr[]" id="strviewstr_1" value="1" /><label for="strviewstr_1">일</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_2" value="2" /><label for="strviewstr_2">월</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_3" value="3" /><label for="strviewstr_3">화</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_4" value="4" /><label for="strviewstr_4">수</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_5" value="5" /><label for="strviewstr_5">목</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_6" value="6" /><label for="strviewstr_6">금</label>&nbsp;

<input type="checkbox" name="strviewstr[]" id="strviewstr_7" value="7" /><label for="strviewstr_7">토</label>



for($i=0;$i<sizeof($strviewstr);$i++){

if($i==0) $f_gubun = $strviewstr[$i];

else $f_gubun .= ",".$strviewstr[$i];

}

<% //서버시간

GregorianCalendar now=new GregorianCalendar();  //클래스 생성

String date_y=String.format("%TF", now); // 날

String time=String.format("%TT", now);  //문자열 HH:MM:SS 형식 포맷 가져오기

%>

<%=date_y.replaceAll("-",".")%> //replaceAll는 -를 .으로 변경

<%=time%>

출력 결과 : 2014.11.12 

출력 결과 : 12:12:12

해당하는 URL부분 www만 자르기



String serverName = request.getServerName();


String Find = serverName;    //    Find 문자열에 도메인주소 받기


int Find_i = Find .indexOf(".");    // .의 위치이전갯수 출력


int Find_i_length = Find.length();    //불필요


if(Find_i >0){    // 0보단 크면


Find = Find.substring(0,Find_i );    // 0부터 해당갯수까지 출력


}


out.print(Find);    // 화면에 출력




String serverName = request.getRequestURI();

+ Recent posts