Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 네이버스마트 에디터
- 웹 플랫폼 설치 관리자
- 한글
- 전자정부 표준프레임워크
- @RequestBody
- SSL
- DB
- spring form tag
- exception
- 호환성
- 톰캣
- php
- Oracle
- checbox
- MYSQL
- 오라클
- 날짜
- 스크립트
- html
- null
- JSTL
- 문자열
- 이클립스
- RADIO
- json
- maven
- switch
- java
- jquery
- HTML5
Archives
- Today
- Total
개인적인 정리
JSTL 날짜에 요일 출력하기 본문
JSTL 날짜에 요일 같이 출력하기
JSTL 날짜에 아래와 같은 패턴으로 요일을 출력해보고자 한다.
2021-12-01(화)
yyyy-MM-dd(E) 에서 (E) 가 요일을 출력해주는 것으로 보인다.
1
2
3
4
5
|
<!-- today -->
<c:set var="today" value="<%=new java.util.Date()%>" />
<c:set var="todayStr"><fmt:formatDate value="${today}" pattern="yyyy-MM-dd(E)" /></c:set>
<c:out value="${todayStr}" />
<!-- //today -->
|
cs |
pattern attribute 는 아래와 같다.
아마도 로케일에 따라서 Tuesday 같은 경우에는 화로 나오는 것 같다.
Code | Purpose | Sample |
---|---|---|
G | The era designator | AD |
y | The year | 2002 |
M | The month | April & 04 |
d | The day of the month | 20 |
h | The hour(12-hour time) | 12 |
H | The hour(24-hour time) | 0 |
m | The minute | 45 |
s | The second | 52 |
S | The millisecond | 970 |
E | The day of the week | Tuesday |
D | The day of the year | 180 |
F | The day of the week in the month | 2 (2nd Wed in month) |
w | The week in the year | 27 |
W | The week in the month | 2 |
a | The a.m./p.m. indicator | PM |
k | The hour(12-hour time) | 24 |
K | The hour(24-hour time) | 0 |
z | The time zone | Central Standard Time |
' | The escape for text | |
'' | The single quote |
아래 URL에서 가져온 내용이다.
https://www.tutorialspoint.com/jsp/jstl_format_formatdate_tag.htm
'전자정부표준프레임워크' 카테고리의 다른 글
api 로 데이타 전송(post) (0) | 2022.04.14 |
---|---|
api 파일 전송 (0) | 2022.04.14 |
JSTL 체크박스에 체크하는 예제 하나 (0) | 2021.12.14 |
Apache Log4j 2 보안취약점 조치 (0) | 2021.12.13 |
JSTL 날짜 계산 (0) | 2021.11.30 |
JSTL 오늘 날짜 (0) | 2021.11.27 |
log4j의 level (0) | 2021.09.08 |
전자정부표준프레임워크에서 SQL 로그 찍기 (0) | 2021.09.08 |
Comments