Hi!<br>
<br>
Ok, try this:<br>
import java.util.Calendar;<br>
Calendar now=Calendar.getInstance();<br>
System.out.println(now.getTime());<br>
<br>
The getInstance() make a new object, and fills the time fields with the current time and date (local). See the getInstance() and getInstance(xxx, xxx).<br>
By, Otto.<br>