-
[JAVA] String -> Date / Date -> String 변환Java 2020. 2. 21. 07:43
public String getRegDate() throws ParseException { //String to Date SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date to = format.parse(regDate); //Date to String format = new SimpleDateFormat("yyyy.MM.dd"); regDate = format.format(to); return regDate; }
regDate는 String type
'Java' 카테고리의 다른 글
[Java] JVM 구조 (0) 2020.03.05 [JAVA] Implicit Narrowing Conversion (0) 2020.02.24 Maven / Java Web Application 디렉토리 구조 (0) 2020.02.21 Maven에서 JSTL 사용 (0) 2020.02.20 JSP (0) 2020.02.17