Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.Date;
public class Main {
public static String getTitle() {
Date date = new Date();
String monthname = (String) android.text.format.DateFormat.format("MMMM yyyy", date.getTime());
return monthname;
}
}