반응형
먼저 아래와 같은 패키지가 필요하다.
import="java.util.*"
import="java.text.*"
import="java.text.*"
그리고 아래와 같이 코딩한다.
Calendar cal = Calendar.getInstance();
Date currentTime = cal.getTime();
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
String ndate = formatter.format(currentTime);
Date currentTime = cal.getTime();
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
String ndate = formatter.format(currentTime);
(이 코드는 http://kiwibug.tistory.com/2 에서 가져옴)
이렇게 하면..
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
위의 코드가 있는 곳에서 The type Date is ambiguous 이런 메세지를 출력하고 에러가 발생한다.
SimpleDateFormat의 파라미터를 저렇게 주면 안되나~ 하고 생각하였었다.
구글링하고 엠파스 찾은 다음에 마지막으로 네이버를 찾았을 때, 그 믿지 않았떤 지식검색에서 이유를 알 수 있었다 -_-
아래는 해당 글의 링크이다.
진작에 에러 메세지 그대로 뜻을 받아드릴 껄...-_-
Date currentTime = cal.getTime(); 를
java.util.Date currentTime = cal.getTime(); 로 수정하면 해결
반응형
'프로그래밍 > 웹 프로그래밍' 카테고리의 다른 글
[iBATIS] The column index is out of range: 1, number of columns: 0 (0) | 2007.09.10 |
---|---|
struts + iBATIS + DBCP 사용하기 (0) | 2007.08.27 |
[JSP] How to use JDBC for PostgreSQL (0) | 2007.07.11 |
[JSP] ResultSet에서 empty set (0) | 2007.03.31 |
댓글