JAVA判断当前日期是星期几

方法1:

  1.    /**  
  2.     * 判断当前日期是星期几<br>  
  3.     * <br>  
  4.     * @param pTime 修要判断的时间<br>  
  5.     * @return dayForWeek 判断结果<br>  
  6.     * @Exception 发生异常<br>  
  7.     */   
  8. public  static  int  dayForWeek(String pTime) throws  Exception {  
  9.  format = new  SimpleDateFormat("yyyy-MM-dd" );  
  10.  Calendar c = Calendar.getInstance();  
  11.  c.setTime(format.parse(pTime));  
  12.  int  dayForWeek = 0 ;  
  13.  if (c.get(Calendar.DAY_OF_WEEK) == 1 ){  
  14.   dayForWeek = 7 ;  
  15.  }else {  
  16.   dayForWeek = c.get(Calendar.DAY_OF_WEEK) - 1 ;  
  17.  }  
  18.  return  dayForWeek;  
  19. }  

 

方法2:

需要导入的包

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

  1. public  static  int  dayForWeek(String pTime) throws  Throwable {  
  2.       
  3.     SimpleDateFormat format = new  SimpleDateFormat("yyyy-MM-dd" );  
  4.       
  5.     Date tmpDate = format.parse(pTime);  
  6.       
  7.     Calendar cal = new  GregorianCalendar();  
  8.       
  9.     cal.set(tmpDate.getYear(), tmpDate.getMonth(), tmpDate.getDay());  
  10.       
  11.     return  cal.get(Calendar.DAY_OF_WEEK);  


/**
     * 获取当前日期是星期几<br>
     *
     * @param dt
     * @return 当前日期是星期几
     */
    public static String getWeekOfDate(Date dt) {
        String[] weekDays = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
        Calendar cal = Calendar.getInstance();
        cal.setTime(dt);

        int w = cal.get(Calendar.DAY_OF_WEEK) - 1;
        if (w < 0)
            w = 0;

        return weekDays[w];
    }





/**
* 获取当前日期是星期几
*
* @param dt
* @return 当前日期是星期几
*/
public static String getWeekOfDate(Date dt) {
String[] weekDays = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
Calendar cal = Calendar.getInstance();
cal.setTime(dt);

int w = cal.get(Calendar.DAY_OF_WEEK) - 1;
if (w < 0)
w = 0;

return weekDays[w];
}

Date date=new Date();
//今天是几号
int day=date.getDate();
System.out.println("Today is :"+day+"号");
Calendar c=Calendar.getInstance();
c.setTime(date);
//今天是这个星期的第几天
int week=c.get(Calendar.DAY_OF_WEEK);
System.out.println("week:"+c.get(Calendar.DAY_OF_WEEK));
//当前月的最后一天是几号
int lastday=c.getActualMaximum(Calendar.DAY_OF_MONTH);
System.out.println("这个月最后一天是:"+lastday+"号");

你可能感兴趣的:(java,Date,exception,String,calendar,import)