Here you can find the source of getWeekDayCN()
public static String getWeekDayCN()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public final static SimpleDateFormat sdf = new SimpleDateFormat(); public static String getWeekDayCN() { sdf.applyPattern("EEEE"); return sdf.format(new Date()); }//w w w . j av a 2 s . c om }