如何使用日期获取一年中的当前周?下面的代码使用当前时间返回一年中的当前周。如何更改此代码以获取输入日期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();