Apache TomcatGeneral discussion of the Apache Tomcat servlet container. For discussions specific to the Professional Apache Tomcat book, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Apache Tomcat section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
how to get the date and time to enter in to database without entering through the interface.in my case i want to add a book reservation to a database .i.e..
get the reserve date added. then to add the cancel date. where cancel date=reserve date +5 days.how to declare date types for this ..
i'm a novice to java and jsp.
you can use the Calendar class in Java.util.*. It has many ways of getting the date. Does this help.... It's got static methods so no need to instantiate the class in order to use them.