728x90
반응형
private Timestamp stringToTimestamp(String date){
Calendar cal;
SimpleDateFormat sd = new SimpleDateFormat("yyyyMMddHHmmss");
try {
sd.parse(date);
} catch (ParseException e) {
e.printStackTrace();
}
cal = sd.getCalendar();
return new Timestamp(cal.getTime().getTime());
}
728x90
728x90
BIG
'Programming > Java' 카테고리의 다른 글
spring boot schedule 사용하기 (0) | 2016.05.26 |
---|---|
java config & message & properties & MessageSourceAccessor (0) | 2016.04.22 |
JAVA에서 문자열 - 한글, 영문, 숫자 구분 (0) | 2016.03.24 |
JAVA에서 파일 확장자 구하기 (0) | 2016.03.22 |
spring boot 에서 db - autoreconnect 설정 추가 (0) | 2016.01.15 |
댓글