2012-04-24 90 views
0

我有一个转换日期时间如下一类:时区独立

import java.text.SimpleDateFormat; 
import java.util.Date; 
import java.util.TimeZone; 

import javax.xml.bind.annotation.adapters.XmlAdapter; 

public class DateFormatConverter extends XmlAdapter<String, Date> { 

    private static final String XML_DATE_PATTERN = "yyyy-MM-dd HH:mm:ss.SSS z"; 

    @Override 
    public Date unmarshal(String xmlDate) throws Exception { 
    if (xmlDate == null || xmlDate.length() == 0) 
    { 
     return null; 
    }  
    SimpleDateFormat xmlDateFormat = new SimpleDateFormat(XML_DATE_PATTERN);  
    return xmlDateFormat.parse(xmlDate); 
    } 

    @Override 
    public String marshal(Date date) throws Exception { 
    if (date == null) { 
     return ""; 
    }  
    SimpleDateFormat xmlDateFormat = new SimpleDateFormat(XML_DATE_PATTERN);  
    return xmlDateFormat.format(date); 
    } 
} 

而且我的单元测试:

public void testMarshalDate() throws Exception { 

    DateFormatConverter converter = new DateFormatConverter(); 
    SimpleDateFormat dateFormater = new SimpleDateFormat("MM-dd-yyyy"); 
    Date date = dateFormater.parse("10-13-2011"); 

    String marshalledDate = converter.marshal(date); 

    String timezone = Calendar.getInstance().getTimeZone().getDisplayName(true, TimeZone.SHORT); 

    System.out.println("Default Timezone:" + TimeZone.getDefault().getDisplayName(true, TimeZone.SHORT)); 
    System.out.println("Timezone of formatter:" + dateFormater.getTimeZone().getDisplayName(true, TimeZone.SHORT)); 
    System.out.println("Timezone:" + timezone); 
    System.out.println("MarshaledDate: " + marshalledDate); 

    assertEquals("Marshalled date string is not expected.", "2011-10-13 00:00:00.000 " + timezone, marshalledDate); 
    } 

在控制台输出:

Default Timezone:ICST 
Timezone of formatter:ICST 
Timezone:ICST 
MarshaledDate: 2011-10-13 00:00:00.000 ICT 

的例外是:

Marshalled date string is not expected. expected:<...S...> but was:<......> 
junit.framework.ComparisonFailure: Marshalled date string is not expected. expected:<...S...> but was:<......> 

为什么编组日期有ICT时区,而我的位置的默认时区是ICST。我应该如何修复以使时区独立?

回答

0

我怀疑你看到“部分时区”和“时区名称”之间的区别。例如,英国的区域使用GMT和BST,两者都是真的时区的一部分,ID为“欧洲/伦敦”,但我不知道在这种情况下显示名称是什么。

如果您不需要需要此处的默认时区,请在创建格式时将其指定为UTC格式。 (调用构造函数后调用setTimeZone

+0

我修好了,问题是这行的原因: – Barcelona 2012-04-24 13:42:06

+0

我修好了,问题是这行的原因:String timezone = Calendar.getInstance()。getTimeZone( ).getDisplayName(true,TimeZone.SHORT);让true变为false,因为默认SimpledateFormat使用非日光格式(在这种情况下是ICT)。 – Barcelona 2012-04-24 14:36:35