MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.util.Date;

import org.apache.commons.lang.time.DateFormatUtils;

public class MainClass {
    public static void main(String[] args) {
        //Format Date into SMTP_DATETIME_FORMAT
        System.out.println("2) SMTP_DATETIME_FORMAT >>>" + DateFormatUtils.SMTP_DATETIME_FORMAT.format(new Date()));

    }
}