일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 요리
- Spring Boot
- Gradle
- devops
- elasticsearch
- laravel
- jenkins
- jsp
- javascript
- IntelliJ
- redis
- ubuntu
- ReactJS
- MySQL
- Design Patterns
- JVM
- php
- java
- springboot
- Git
- tool
- db
- Spring Batch
- it
- 맛집
- Spring
- AWS
- linux
- Web Server
- Oracle
Archives
- Today
- Total
아무거나
string to date / date to string 형변환 본문
반응형
String to Date
String from = "2013-04-08 10:10:10";
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date to = transFormat.parse(from);
Date to String
Date from = new Date();
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String to = transFormat.format(from);
반응형
'Java & Kotlin > Java' 카테고리의 다른 글
Map (Collection) 배열 생성 <Key, Value> (0) | 2019.06.20 |
---|---|
날짜 비교 date compare (0) | 2019.06.20 |
java.utill.Date 타입 yyyy-mm-dd 형태로 바꾸기 (0) | 2019.06.19 |
Date 표시 방법 (0) | 2019.06.19 |
[library] SSH Utils [private key, password] (2) | 2019.06.17 |
Comments