
hello my name kiemtheng i'm come from Cambodia, i would to write java programming to calculate a name of year for each birthday in Chinese but i dont know how to do.

import java.util.*;
import java.text.*;
public class FormatDate{
public static void main(String[] args) {
Locale locale=Locale.FRANCE;
Date today = new Date();
System.out.println("Date format in "+ locale.getDisplayName()+ " = " + SimpleDateFormat.getDateInstance(SimpleDateFormat.LONG, locale).format(today).toUpperCase());
}
}