Groovy форматирование даты и часового пояса
Я конвертирую UTC в CET с помощью этой кодировки Groovy / Java:
import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
import org.joda.time.*;
import org.joda.time.format.*;
def Message processData(Message message) {
def messageLog = messageLogFactory.getMessageLog(message);
def map = message.getHeaders();
def value = map.get("dateOfBirth");
if (value != null) {
String pattern = "yyyy-MM-dd'T'HH:mm:ssZ";
DateTimeFormatter dtf = DateTimeFormat.forPattern(pattern);
DateTime dateTime = dtf.parseDateTime(value.toString());
TimeZone tz = TimeZone.getTimeZone("CET");
def result = dateTime.withZone( DateTimeZone.forTimeZone(tz) ).toString();
message.setHeader("dateOfBirth", result);
return message;
}
}
этот код работает, UTC конвертируется в CET.
Но я все равно получаю сообщение об ошибке и не знаю почему. Может ли кто-нибудь помочь мне избавиться от этой ошибки?
Ошибка:
javax.script.ScriptException: java.lang.Exception:
java.lang.IllegalArgumentException: Invalid format: ""@ line 20 in script8.groovy,
cause: java.lang.IllegalArgumentException: Invalid format: ""
заранее спасибо
Решение:
import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
import org.joda.time.*;
import org.joda.time.format.*;
def Message processData(Message message) {
def messageLog = messageLogFactory.getMessageLog(message);
def map = message.getHeaders();
def value = map.get("dateOfBirth");
if (value?.trim() != "") {
String pattern = "yyyy-MM-dd'T'HH:mm:ssZ";
DateTimeFormatter dtf = DateTimeFormat.forPattern(pattern);
DateTime dateTime = dtf.parseDateTime(value.toString());
TimeZone tz = TimeZone.getTimeZone("CET");
def result = dateTime.withZone( DateTimeZone.forTimeZone(tz) ).toString();
message.setHeader("dateOfBirth", result);
}
return message;
}
3 ответа
Ваш код работает нормально, когда value
переменная содержит правильное значение даты и времени.
если я изменю value = ""
(пустая строка), то у меня такое же исключение:
java.lang.IllegalArgumentException: неверный формат: ""
@Grab(group='joda-time', module='joda-time', version='2.0')
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import java.util.TimeZone;
def value = '2016-12-31T13:14:15+02';
String pattern = "yyyy-MM-dd'T'HH:mm:ssZ";
DateTimeFormatter dtf = DateTimeFormat.forPattern(pattern);
DateTime dateTime = dtf.parseDateTime(value);
TimeZone tz = TimeZone.getTimeZone("CET");
def result = dateTime.withZone( DateTimeZone.forTimeZone(tz) ).toString();
Здесь вы можете пойти:
//Change the date and date formate as needed
def inputDateString = "Wed Aug 23 00:00:00 UTC 2017"
def inputDateFormat = "E MMM dd HH:mm:ss Z yyyy"
def outputDateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
def outputTZ = TimeZone.getTimeZone('CET')
def date = Date.parse(inputDateFormat, inputDateString)
def convertedDate = date.format(outputDateFormat, outputTZ)
println convertedDate
Вы можете быстро попробовать это онлайн демо
В Groovy вы можете обнаружить, что добавление dateUtil.nullSafeFormat может работать нормально.
Но просто к вашему сведению, вот еще один способ использования
maybeNull?.with { it.whatever() } ?: ""
это хорошо работает, чтобы избежать передачи null в DateFormat:
Map<String,String> getStuff(def json) {
DateTimeFormatter df = DateTimeFormatter.ISO_LOCAL_DATE
[oneThing: json?.some?.path,
someLocalDate: json?.some?.big?.path?.myDate?.with { df.format(it) } ?: "",
keepGoing: json?.more?.stuff?.with { [lastName, firstName]?.join(' ') },
...]
Вы можете видеть, что я перебарщиваю с нулевыми проверками, но если это так просто, почему бы и нет!