BASIC CONSTRUCTS

23.How to convert Date to Timestamp

            import java.sql.Timestamp;
            import java.util.Date;
                
            public class DateToTimestamp {
                public static void main(String[] args) {
                    Date date = new Date();
                    Timestamp timestamp = new Timestamp(date.getTime());
                    System.out.println(timestamp);
                }
            }  
        

OUTPUT

            2024-10-20 00:00:00.0