Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TimestampJava 8 では、 (in java.sql) をLocalDate( in)に変換するにはどうすればよいjava.timeですか?
Timestamp
java.sql
LocalDate
java.time
できるよ:
timeStamp.toLocalDateTime().toLocalDate();
タイムゾーンをtimestamp.toLocalDateTime() 使用しClock.systemDefaultZone()て変換を行うことに注意してください。これはあなたが望むものかもしれませんし、そうでないかもしれません。
timestamp.toLocalDateTime()
Clock.systemDefaultZone()