Package isi.pasco2.parser.time

Examples of isi.pasco2.parser.time.FileTime.asDate()


    long high = 29744990;
    FileTime ft = new FileTime(low, high);
    long millis = ft.getTimeAsMillis();
    //assertEquals(1130902272657L, millis);
   
    Date d = ft.asDate();
    assertEquals("Wed Nov 02 13:31:12 EST 2005", d.toString());
    assertEquals("2005-11-02T03:31:12.657Z", ft.toString());
  }
 
  public void testBitStuff() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.