我正在尝试从数据类型为java.util.calendar
的Web服务中检索时间值(05:58:41.000),然后将其重新发送回服务。
重新发送时,我想知道是否像下面这样附加了一个Z(时区文本)。
(05:58:41.000Z)
这是日历的预期行为吗?有什么办法可以修剪时区文本(Z)?
非常感谢您对此的帮助。
我的代码不是那么复杂,非常简单。
我的POJO课是:
Class A {
private java.util.Calendar time;
public void setTime(Calendar theTime) {
time = theTime;
}
public Calendar getTime() {
return time;
}
}
映射代码如下所示
class Mapping {
//Invoke a service A and assign the mapping
A.setTime(serviceResponse.getTime());
// from service getting value as 05:58:41.000
//Invoke the service B by resending the time value as such
request.setTime(A.getTime());
// While resending back value in the request shows as 05:58:41.000Z
}
最佳答案
在您的request.setTime(A.getTime());
中,使用局部变量对数据进行必要的更改并将其设置为request.setTime(localVariable);