⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cvs.java

📁 jboss规则引擎
💻 JAVA
字号:
package com.nwalsh.saxon;import java.io.*;import java.util.Calendar;import java.util.GregorianCalendar;import java.util.Date;import java.util.Locale;import java.util.TimeZone;import java.text.DateFormat;import java.text.ParseException;/** * <p>Saxon extension to convert CVS date strings into local time</p> * * <p>$Id: CVS.java 5907 2006-04-27 08:26:47Z xmldoc $</p> * * <p>Copyright (C) 2000 Norman Walsh.</p> * * <p>This class provides a * <a href="http://saxon.sourceforge.net/">Saxon</a> * extension to turn the CVS date strings, which are UTC:</p> * * <pre>&#36;Date: 2000/11/09 02:34:20 &#36;</pre> * * <p>into legibly formatted local time:</p> * * <pre>Wed Nov 08 18:34:20 PST 2000</pre> * * <p>(I happened to be in California when I wrote this documentation.)</p> * <p><b>Change Log:</b></p> * <dl> * <dt>1.0</dt> * <dd><p>Initial release.</p></dd> * </dl> * * @author Norman Walsh * <a href="mailto:ndw@nwalsh.com">ndw@nwalsh.com</a> * * @version $Id: CVS.java 5907 2006-04-27 08:26:47Z xmldoc $ * */public class CVS {  /**   * <p>Constructor for CVS</p>   *   * <p>All of the methods are static, so the constructor does nothing.</p>   */  public CVS() {  }  /**   * <p>Convert a CVS date string into local time.</p>   *   * @param cvsDate The CVS date string.   *   * @return The date, converted to local time and reformatted.   */  public static String localTime (String cvsDate) {    // A cvsDate has the following form "$Date: 2006-04-27 17:26:47 +0900 (Thu, 27 Apr 2006) $"    if (!cvsDate.startsWith("$Date: ")) {      return cvsDate;    }    String yrS = cvsDate.substring(7,11);    String moS = cvsDate.substring(12,14);    String daS = cvsDate.substring(15,17);    String hrS = cvsDate.substring(18,20);    String miS = cvsDate.substring(21,23);    String seS = cvsDate.substring(24,26);    TimeZone tz = TimeZone.getTimeZone("GMT+0");    GregorianCalendar gmtCal = new GregorianCalendar(tz);    try {      gmtCal.set(Integer.parseInt(yrS),		 Integer.parseInt(moS)-1,		 Integer.parseInt(daS),		 Integer.parseInt(hrS),		 Integer.parseInt(miS),		 Integer.parseInt(seS));    } catch (NumberFormatException e) {      // nop    }    Date d = gmtCal.getTime();    return d.toString();  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -