Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;
import java.util.TimeZone;

public class Main {

    public static String getCurrentUtcTime() {
        Date l_datetime = new Date();
        DateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss");
        TimeZone l_timezone = TimeZone.getDefault();
        formatter.setTimeZone(l_timezone);
        String l_utc_date = formatter.format(l_datetime);
        return l_utc_date;
    }
}