Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.litesoft.commonfoundation.typeutils;

import java.sql.*;
import java.text.*;

public class Timestamps
{
    public static Timestamp now()
    {
        return new Timestamp( System.currentTimeMillis() );
    }

    public static String nowToYMDHMS4FileName()
    {
        return new SimpleDateFormat( "yyyyMMdd-HHmmss" ).format( now() );
    }

    public static String nowToYMDHMS()
    {
        return new SimpleDateFormat( "yyyy/MM/dd HH:mm:ss" ).format( now() );
    }
}

Commits for litesoft/trunk/DeviceDesktopTest/src/org/litesoft/commonfoundation/typeutils/Timestamps.java

Diff revisions: vs.
Revision Author Commited Message
943 Diff Diff GeorgeS picture GeorgeS Tue 03 Jun, 2014 04:25:50 +0000

Extracting commonfoundation

936 GeorgeS picture GeorgeS Sun 01 Jun, 2014 20:19:38 +0000

Language Support