Date to String

&

String to Date

변환하기


Date to String

 

- Calendar 객체를 생성하여 현재 날짜와 시간정보를 가져옵니다.

Calendar calendar = Calendar.getInstance();

- 원하는 Date 형식을 지정.

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");

- 가져온 정보를 format 후 String으로 저장.

String date = dateFormat.format(calendar.getTime());

String to Date

 

- String 타입으로 되어있는 날짜값이 어떤값인지 알기 위해서 SimpleDateFormat으로 맞춰줍니다.

  그리고 parse를 이용해서 Date 변수에 담아주면 됩니다.

  ( ※ parse는 try-catch문 안에서 사용하지 않을 경우 에러가 발생합니다. )

Date parse_date = null;
String date = "20200101";
SimpleDateFormat dateFormat1 = new SimpleDateFormat("yyyyMMdd");

try {

	parse_date = dateFormat1.parse(date);
    
}catch (Exception e){ e.printStackTrace(); }

 


+ Recent posts