首页 > 代码库 > Java 给定一个日期,求对应的周数、星期几等
Java 给定一个日期,求对应的周数、星期几等
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));
}
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));
}
Java 给定一个日期,求对应的周数、星期几等
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。