Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class Main {
    private static String generateTimeTagMessageLog(String tag, String msg) {
        final String log = String.format("%s: %s: %s",
                SimpleDateFormat.getTimeInstance(DateFormat.DEFAULT, Locale.CHINA).format(new Date()), tag, msg);
        return log;
    }
}