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.SimpleDateFormat;

import java.util.GregorianCalendar;
import java.util.Locale;

public class Main {
    private static SimpleDateFormat dfgiornoS = new SimpleDateFormat("E", Locale.ITALIAN);

    public static String getGiornoLettere(GregorianCalendar cal) {
        return dfgiornoS.format(cal.getTime());
    }
}