Hi all,
Have a situation with date format and not sure how to handle. I created a new date format -
SimpleDateFormat dateFormatter = new SimpleDateFormat("Kmma"
java.util.Date temp = new java.util.Date();
String time = null;
time = dateFormatter.format(temp);
custRptTitle = cstRptTitle + "(" + time + "";
We are adding a time stamp to the end of a report title. This works fine until the code runs between the hours of noon and 1pm. The time stamp is coming up as 045pm instead of 1245pm. Anyone have any suggestions how to fix???
Any help would be most appreciated.
TIA,
Tim
Have a situation with date format and not sure how to handle. I created a new date format -
SimpleDateFormat dateFormatter = new SimpleDateFormat("Kmma"
java.util.Date temp = new java.util.Date();
String time = null;
time = dateFormatter.format(temp);
custRptTitle = cstRptTitle + "(" + time + "";
We are adding a time stamp to the end of a report title. This works fine until the code runs between the hours of noon and 1pm. The time stamp is coming up as 045pm instead of 1245pm. Anyone have any suggestions how to fix???
Any help would be most appreciated.
TIA,
Tim