Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/**
 * Title:        efa - elektronisches Fahrtenbuch fr Ruderer
 * Copyright:    Copyright (c) 2001-2011 by Nicolas Michael
 * Website:      http://efa.nmichael.de/
 * License:      GNU General Public License v2
 *
 * @author Nicolas Michael
 * @version 2
 */

import java.util.*;

public class Main {
    public static String getCurrentTimeStampHHMM() {
        Calendar cal = new GregorianCalendar();
        return makeTimeString(cal.get(Calendar.HOUR_OF_DAY), 2) + ":" + makeTimeString(cal.get(Calendar.MINUTE), 2);
    }

    private static String makeTimeString(int value, int chars) {
        String s = Integer.toString(value);
        while (s.length() < chars) {
            s = "0" + s;
        }
        return s;
    }
}