我正在使用Dozer框架将一个类的属性复制到另一个类。
public class Source {
private BigDecimal customerid;
private BigDecimal tenantid;
private BigDecimal salutation;
private String timezone;
private Calendar createdate;
}
public class Target {
private BigDecimal customerid;
private String timezone;
private String createdate;
}
到目前为止,已经创建了一个函数,并且在执行以下两行时正常工作:
List<Source> customrlist = customerdao.findByTenantid(tenantid);
// copy the data into the structure that is to be returned to the client
List<Target> actual = DozerListServices.map(mapper, customrlist,
Target.class);
现在,人们希望做出改变。
正在使用的一个属性(在Source类中)是Calendar。
目标是转换&#34;日历&#34;到&#34; String&#34; (在Target类中)。字符串将采用某种格式(例如:YYYY-MM-DD)
为了做到这一点,有人建议使用&#34; DozerConverter&#34; - 看起来像这样:
public class DozerStringToCalTimeConvert extends
DozerConverter<String, Calendar> {
public DozerStringToCalTimeConvert() {
super(String.class, Calendar.class);
}
@Override
public Calendar convertTo(String source, Calendar destination) {
if (!StringUtils.hasLength(source)) {
return null;
}
Calendar dt = null;
return dt;
}
@Override
public String convertFrom(Calendar source, String destination) {
if (source == null) {
return null;
}
return source.toString();
}
}
虽然可以使用Formatters将Calendar转换为corret表示(例如:YYYY-MM-DD),但问题是日期是UTC格式。 &#34; Source&#34;中的一个属性class is&#34; timezone&#34;。时区看起来像美国/芝加哥&#39;美国/东方&#39;等。&#34;时区&#34;需要信息才能将UTC时间转换为本地时间。使用上面的示例转换器代码,如何对其进行更改以便可以访问&#34; timezone&#34;来自Source类。
TIA
答案 0 :(得分:0)
Calendar
类现在已经遗留下来,取而代之的是java.time类。
您的Calendar
对象很可能实际上是GregorianCalendar
。使用instanceOf
进行测试。如果是,请投射并转换为java.time.ZonedDateTime
。
if ( myCal instanceOf GregorianCalendar ) {
GregorianCalendar gc = (GregorianCalendar) myCal ;
ZonedDateTime zdt = gc.toZonedDateTime() ;
LocalDate ld = zdt.toLocalDate() ; // A date-only value deduced from the time zone assigned.
String output = ld.toString() ; // Generate string in standard ISO 8601 format YYYY-MM-DD.
}