Here you can find the source of getCurrentDayOfWeekArabia()
Method: get current day of week in Arabia return type int
public static int getCurrentDayOfWeekArabia()
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Locale; public class Main { /**/*w ww. j a v a 2 s .c om*/ * <p> * Method: get current day of week in Arabia return type int * </p> * * @return String */ public static int getCurrentDayOfWeekArabia() { Calendar calendar = Calendar.getInstance(Locale.getDefault()); return calendar.get(Calendar.DAY_OF_WEEK); } }