Java examples for java.sql:Date
get Day from java.sql.Date
//package com.java2s; import java.sql.Date; import java.time.LocalDate; public class Main { public static int getDay(Date date) { LocalDate localDate = date.toLocalDate(); return localDate.getDayOfMonth(); }/*from www . j a v a 2 s . c om*/ }