在构建JAXWS客户端时,方法之一就是获取XMLGregorianCalendar。
现在,我需要格式化此数据2011-11-06T14:34:16.679+02:00以设置为XMLGregorianCalendar。如何做呢 。
该日期是从嗅探连接到WS服务器的其他客户端获取的。

最佳答案

您可以使用follow方法将日期字符串解析为java.util.Date对象:

String strDate = "2011-11-06T14:34:16.679+02:00";
strDate = strDate.substring(0, 26) + strDate.substring(27, 29);

String pattern = "yyyy-MM-dd'T'hh:mm:ss.SSSZ";
SimpleDateFormat sdFormat = new SimpleDateFormat(pattern);

Date d = sdFormat.parse(strDate);


然后将此日期设置为您的XMLGregorianCalendarj

关于java - Java如何将2011-11-06T14:34:16.679 + 02:00设置为XMLGregorianCalendar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8033823/

10-11 20:43