將日期格式化成星期幾


 public static String dayForWeek(String pTime) throws Throwable {  
	        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");  
	        Date tmpDate = format.parse(pTime);  
	        Calendar cal = Calendar.getInstance(); 
	        String[] weekDays = { "日", "一", "二", "三", "四", "五", "六" };
	        try {
	            cal.setTime(tmpDate);
	        } catch (Exception e) {
	            e.printStackTrace();
	        }
	        int w = cal.get(Calendar.DAY_OF_WEEK) - 1; // 指示一個星期中的某天。
	        if (w < 0)
	            w = 0;
	        return weekDays[w];

	    }  

  傳入日期

public static void main(String[] args) throws Throwable {

		 String a = dayForWeek("2019-06-29 09:44:1");

}	

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM