org.exolab.castor.types.Year.setZone()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(75)

本文整理了Java中org.exolab.castor.types.Year.setZone()方法的一些代码示例,展示了Year.setZone()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Year.setZone()方法的具体详情如下:
包路径:org.exolab.castor.types.Year
类名称:Year
方法名:setZone

Year.setZone介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.castor/castor-xml

public Year() {
 super("P1Y");
 // we need to set the time zone to the computer local time zone
 // if we want to use the toDate() method.
 int temp = TimeZone.getDefault().getRawOffset();
 if (temp < 0) {
  temp = -temp;
  try {
   this.setZoneNegative();
  } catch (UnsupportedOperationException e) {
  }
 }
 short zhour = (short) (temp / (60 * 60 * 1000));
 temp = temp % (60 * 60 * 1000);
 short zmin = (short) (temp / (60 * 1000));
 try {
  this.setZone(zhour, zmin);
 } catch (UnsupportedOperationException e) {
 }
}

代码示例来源:origin: org.codehaus.castor/com.springsource.org.castor

public Year() {
  super("P1Y");
  //we need to set the time zone to the computer local time zone
  //if we want to use the toDate() method.
  int temp = TimeZone.getDefault().getRawOffset();
  if (temp < 0){
    temp = -temp;
    try {
      this.setZoneNegative();
    } catch(UnsupportedOperationException e) {
    }
  }
  short zhour = (short) (temp / (60*60*1000));
  temp = temp % (60*60*1000);
  short zmin = (short)(temp / (60*1000));
  try {
    this.setZone(zhour,zmin);
  } catch (UnsupportedOperationException e) {
  }
}

相关文章