我正在使用 SoupUI,我需要调整我在响应 GMT 日期/时间时返回的日期/时间 (UTC)。我收到回复的日期如下:
2012-11-09T00:00:00+01:00
我想将其转换为
2012-11-08T23:00:00Z
不幸的是,我缺乏 Java 技能,因此也缺乏 Groovy 技能,无法自己做到这一点。我对日期转换做了很多搜索,但直到现在我仍然无法找到我想要的东西。我会继续寻找。如果我确实设法获得了解决方案,那么我将在此处发布。
我正在使用 SoupUI,我需要调整我在响应 GMT 日期/时间时返回的日期/时间 (UTC)。我收到回复的日期如下:
2012-11-09T00:00:00+01:00
我想将其转换为
2012-11-08T23:00:00Z
不幸的是,我缺乏 Java 技能,因此也缺乏 Groovy 技能,无法自己做到这一点。我对日期转换做了很多搜索,但直到现在我仍然无法找到我想要的东西。我会继续寻找。如果我确实设法获得了解决方案,那么我将在此处发布。
假设时区部分没有冒号,我相信这应该有效:
// Your input String (with no colons in the timezone portion)
String original = '2012-11-09T00:00:00+0100'
// The format to read this input String
def inFormat = new java.text.SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ssZ" )
// The format we want to output
def outFormat = new java.text.SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ss'Z'" )
// Set the timezone for the output
outFormat.timeZone = java.util.TimeZone.getTimeZone( 'GMT' )
// Then parse the original String, and format the resultant
// Date back into a new String
String result = outFormat.format( inFormat.parse( original ) )
// Check it's what we wanted
assert result == '2012-11-08T23:00:00Z'
如果TimeZone中有冒号,则需要Java 7来执行此任务(或者可能需要像 JodaTime 这样的日期处理框架),并且可以将前两行更改为:
// Your input String
String original = '2012-11-09T00:00:00+01:00'
// The format to read this input String (using the X
// placeholder for ISO time difference)
def inFormat = new java.text.SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ssX" )