public static void main(String[] args) throws ClassNotFoundException,
IOException, ParseException {
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd");
String str = "2015-2-8";
System.out.println("str="+str);
Date date = dateFormatter.parse(str);
dateFormatter.applyPattern("D");
System.out.println("一年中的第几天:" + dateFormatter.format(date));
dateFormatter.applyPattern("d");
System.out.println("一个月中的第几天:" + dateFormatter.format(date));
dateFormatter.applyPattern("w");
System.out.println("一年中的第几周:" + dateFormatter.format(date));
dateFormatter.applyPattern("W");
System.out.println("一个月中的第几周:" + dateFormatter.format(date));
dateFormatter.applyPattern("E");
System.out.println("一个星期中的天数:" + dateFormatter.format(date));
}
时间: 2024-10-04 22:29:13