This is an old revision of the document!
Date/Time Calculations in Scripts
See Java documentation for package java.time and java.time.format for more ideas
Time from the incomingValue
The timestamp of the event when the incoming value object is created is stored in the value object. This time is the milliseconds from the Java epoch of 1970-01-01T00:00:00Z.
timestamp = incomingValue.getTimeMillis(); //convert time in millseconds to a local time valueObjectTime = java.time.Instant.ofEpochMilli(timestamp); localZonedDateTime = java.time.LocalDateTime.ofInstant(valueObjectTime, java.time.ZoneId.systemDefault()); //print this as a local time and date using a time formatter df=java.time.format.DateTimeFormatter.ofLocalizedDateTime(java.time.format.FormatStyle.MEDIUM); //use the formatter to make the output human readable print("time of value object is "+df.format(localZonedDateTime)); output=df.format(localZonedDateTime);
Get the Current Local Time
For log4j logging, use a date formatter in the appender, for example:
In a script the current time can be printed using:
df=java.time.format.DateTimeFormatter.ofPattern("HH:mm:ss"); timenow = java.time.LocalDateTime.now(); print(df.format(timenow)+" S10F1 TerminalRequest_Flag"); //#debugging