如何使用日期獲取當年的一週?以下代碼使用當前時間返回當年的當周。如何更改此代碼以獲取輸入日期,如26/8/2013
?(在此情況下應返回35)。我想通過輸入日期形式的用戶來實現,然後返回當年的一週。如何獲得使用從用戶輸入日期的一年的一週
Calendar calender = Calendar.getInstance();
Log.d("Current Week:", "" + calender.get(Calendar.WEEK_OF_YEAR));
Toast.makeText(this, "current year weeks is"+ calender.get(Calendar.WEEK_OF_YEAR),
Toast.LENGTH_SHORT).show();
的可能重複[如何獲得本年度一週的總人數(http://stackoverflow.com/questions/18438332/how-to-get-total-number-of-本週最新的一年) –