Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class Main {
    public static void main(String[] args) {
        GregorianCalendar gc = new GregorianCalendar(2010, Calendar.SEPTEMBER, 9);
        Date birthDate = gc.getTime();

        String pattern = "'I was born on the day' dd 'of the month 'MMMM 'in' yyyy";

        SimpleDateFormat simpleFormatter = new SimpleDateFormat(pattern);
        System.out.println(simpleFormatter.format(birthDate));
    }

}