java print current time formatted code example
Example: how to format a datetime object to show date and time and milliseconds in java
public String getCurrentTimeStamp() {
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS").format(new Date());
}