本文整理汇总了Java中javax.xml.datatype.XMLGregorianCalendar.setTimezone方法的典型用法代码示例。如果您正苦于以下问题:Java XMLGregorianCalendar.setTimezone方法的具体用法?Java XMLGregorianCalendar.setTimezone怎么用?Java XMLGregorianCalendar.setTimezone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.datatype.XMLGregorianCalendar
的用法示例。
在下文中一共展示了XMLGregorianCalendar.setTimezone方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: normalize
import javax.xml.datatype.XMLGregorianCalendar; //导入方法依赖的package包/类
/**
* <p>Normalize this instance to UTC.</p>
*
* <p>2000-03-04T23:00:00+03:00 normalizes to 2000-03-04T20:00:00Z</p>
* <p>Implements W3C XML Schema Part 2, Section 3.2.7.3 (A).</p>
*/
public XMLGregorianCalendar normalize() {
XMLGregorianCalendar normalized = normalizeToTimezone(timezone);
// if timezone was undefined, leave it undefined
if (getTimezone() == DatatypeConstants.FIELD_UNDEFINED) {
normalized.setTimezone(DatatypeConstants.FIELD_UNDEFINED);
}
// if milliseconds was undefined, leave it undefined
if (getMillisecond() == DatatypeConstants.FIELD_UNDEFINED) {
normalized.setMillisecond(DatatypeConstants.FIELD_UNDEFINED);
}
return normalized;
}
示例2: normalizeToTimezone
import javax.xml.datatype.XMLGregorianCalendar; //导入方法依赖的package包/类
/**
* <p>Normalize this instance to UTC.</p>
*
* <p>2000-03-04T23:00:00+03:00 normalizes to 2000-03-04T20:00:00Z</p>
* <p>Implements W3C XML Schema Part 2, Section 3.2.7.3 (A).</p>
*/
private XMLGregorianCalendar normalizeToTimezone(int timezone) {
int minutes = timezone;
XMLGregorianCalendar result = (XMLGregorianCalendar) this.clone();
// normalizing to UTC time negates the timezone offset before
// addition.
minutes = -minutes;
Duration d = new DurationImpl(minutes >= 0, // isPositive
0, //years
0, //months
0, //days
0, //hours
minutes < 0 ? -minutes : minutes, // absolute
0 //seconds
);
result.add(d);
// set to zulu UTC time.
result.setTimezone(0);
return result;
}
示例3: test
import javax.xml.datatype.XMLGregorianCalendar; //导入方法依赖的package包/类
private static void test(int offsetMinutes)
throws DatatypeConfigurationException {
XMLGregorianCalendar calendar = DatatypeFactory.newInstance().
newXMLGregorianCalendar();
calendar.setTimezone(60 + offsetMinutes);
TimeZone timeZone = calendar.getTimeZone(DatatypeConstants.FIELD_UNDEFINED);
String expected = (offsetMinutes < 10 ? "GMT+01:0" : "GMT+01:")
+ offsetMinutes;
if (!timeZone.getID().equals(expected)) {
throw new RuntimeException("Test failed: expected timezone: " +
expected + " Actual: " + timeZone.getID());
}
}