public String getTimestamp(Container container) throws StreamTransformationException {
String DATE_FORMAT_NOW = "yyyyMMdd_HHmmss_SSS";
Calendar cal = Calendar.getInstance();
java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(DATE_FORMAT_NOW);
return sdf.format(cal.getTime());
}
Lascia un commento