Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");

    public static void printCurrentTimeAndThreadAndMessage(String message) {
        System.out.println("[" + getDateFormat(new Date()) + "] - {" + Thread.currentThread().getName() + "} - { "
                + message + " }");
    }

    public static String getDateFormat(Date d) {
        return sdf.format(d);
    }
}