Java获取各种常用时间方法大全

  • package cc.javaweb.test;
  • Java中文网,Java获取各种时间大全
  • import java.text.DateFormat;
  • import java.text.ParsePosition;
  • import java.text.SimpleDateFormat;
  • import java.util.Calendar;
  • import java.util.Date;
  • import java.util.GregorianCalendar;
  • public class TimeTest {
  • //用来全局控制 上一周,本周,下一周的周数变化
  • ;
  • private int MaxDate;//一月最大天数
  • private int MaxYear;//一年最大天数
  • /**
  • * @param args
  • */
  • public static void main(String[] args) {
  • TimeTest tt = new TimeTest();
  • System.out.println("获取当天日期:"+tt.getNowTime("yyyy-MM-dd"));
  • System.out.println("获取本周一日期:"+tt.getMondayOFWeek());
  • System.out.println("获取本周日的日期~:"+tt.getCurrentWeekday());
  • System.out.println("获取上周一日期:"+tt.getPreviousWeekday());
  • System.out.println("获取上周日日期:"+tt.getPreviousWeekSunday());
  • System.out.println("获取下周一日期:"+tt.getNextMonday());
  • System.out.println("获取下周日日期:"+tt.getNextSunday());
  • System.out.println("获得相应周的周六的日期:"+tt.getNowTime("yyyy-MM-dd"));
  • System.out.println("获取本月第一天日期:"+tt.getFirstDayOfMonth());
  • System.out.println("获取本月最后一天日期:"+tt.getDefaultDay());
  • System.out.println("获取上月第一天日期:"+tt.getPreviousMonthFirst());
  • System.out.println("获取上月最后一天的日期:"+tt.getPreviousMonthEnd());
  • System.out.println("获取下月第一天日期:"+tt.getNextMonthFirst());
  • System.out.println("获取下月最后一天日期:"+tt.getNextMonthEnd());
  • System.out.println("获取本年的第一天日期:"+tt.getCurrentYearFirst());
  • System.out.println("获取本年最后一天日期:"+tt.getCurrentYearEnd());
  • System.out.println("获取去年的第一天日期:"+tt.getPreviousYearFirst());
  • System.out.println("获取去年的最后一天日期:"+tt.getPreviousYearEnd());
  • System.out.println("获取明年第一天日期:"+tt.getNextYearFirst());
  • System.out.println("获取明年最后一天日期:"+tt.getNextYearEnd());
  • ));
  • System.out.println("获取两个日期之间间隔天数2010-12-31~2010-9-14:"+TimeTest.getTwoDay("2010-12-31","2010-9-14"));
  • }
  • /**
  • * 得到二个日期间的间隔天数
  • */
  • public static String getTwoDay(String sj1, String sj2) {
  • SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");
  • ;
  • try {
  • java.util.Date date = myFormatter.parse(sj1);
  • java.util.Date mydate = myFormatter.parse(sj2);
  • );
  • catch (Exception e) {
  • return "";
  • }
  • return day + "";
  • }
  • /**
  • * 根据一个日期,返回是星期几的字符串
  • *
  • * @param sdate
  • * @return
  • */
  • public static String getWeek(String sdate) {
  • // 再转换为时间
  • Date date = TimeTest.strToDate(sdate);
  • Calendar c = Calendar.getInstance();
  • c.setTime(date);
  • // int hour=c.get(Calendar.DAY_OF_WEEK);
  • // hour中存的就是星期几了,其范围 1~7
  • // 1=星期日 7=星期六,其他类推
  • return new SimpleDateFormat("EEEE").format(c.getTime());
  • }
  • /**
  • * 将短时间格式字符串转换为时间 yyyy-MM-dd
  • *
  • * @param strDate
  • * @return
  • */
  • public static Date strToDate(String strDate) {
  • SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
  • );
  • Date strtodate = formatter.parse(strDate, pos);
  • return strtodate;
  • }
  • /**
  • * 两个时间之间的天数
  • *
  • * @param date1
  • * @param date2
  • * @return
  • */
  • public static long getDays(String date1, String date2) {
  • if (date1 == null || date1.equals(""))
  • ;
  • if (date2 == null || date2.equals(""))
  • ;
  • // 转换为标准时间
  • SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");
  • java.util.Date date = null;
  • java.util.Date mydate = null;
  • try {
  • date = myFormatter.parse(date1);
  • mydate = myFormatter.parse(date2);
  • catch (Exception e) {
  • }
  • );
  • return day;
  • }
  • // 计算当月最后一天,返回字符串
  • public String getDefaultDay(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//设为当前月的1号
  • );//加一个月,变为下月的1号
  • );//减去一天,变为当月最后一天
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • // 上月第一天
  • public String getPreviousMonthFirst(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//设为当前月的1号
  • );//减一个月,变为下月的1号
  • //lastDate.add(Calendar.DATE,-1);//减去一天,变为当月最后一天
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获取当月第一天
  • public String getFirstDayOfMonth(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//设为当前月的1号
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • // 获得本周星期日的日期
  • public String getCurrentWeekday() {
  • ;
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • );
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • //获取当天时间
  • public String getNowTime(String dateformat){
  • Date   now   =   new   Date();
  • SimpleDateFormat   dateFormat   =   new   SimpleDateFormat(dateformat);//可以方便地修改日期格式
  • String  hehe  = dateFormat.format(now);
  • return hehe;
  • }
  • // 获得当前日期与本周日相差的天数
  • private int getMondayPlus() {
  • Calendar cd = Calendar.getInstance();
  • // 获得今天是一周的第几天,星期日是第一天,星期二是第二天......
  • ;         //因为按中国礼拜一作为第一天所以这里减1
  • ) {
  • ;
  • else {
  • - dayOfWeek;
  • }
  • }
  • //获得本周一的日期
  • public String getMondayOFWeek(){
  • ;
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • currentDate.add(GregorianCalendar.DATE, mondayPlus);
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • //获得相应周的周六的日期
  • public String getSaturday() {
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • );
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • // 获得上周星期日的日期
  • public String getPreviousWeekSunday() {
  • ;
  • weeks--;
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • currentDate.add(GregorianCalendar.DATE, mondayPlus+weeks);
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • // 获得上周星期一的日期
  • public String getPreviousWeekday() {
  • weeks--;
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • * weeks);
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • // 获得下周星期一的日期
  • public String getNextMonday() {
  • weeks++;
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • );
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • // 获得下周星期日的日期
  • public String getNextSunday() {
  • int mondayPlus = this.getMondayPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • );
  • Date monday = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preMonday = df.format(monday);
  • return preMonday;
  • }
  • private int getMonthPlus(){
  • Calendar cd = Calendar.getInstance();
  • int monthOfNumber = cd.get(Calendar.DAY_OF_MONTH);
  • );//把日期设置为当月第一天
  • );//日期回滚一天,也就是最后一天
  • MaxDate=cd.get(Calendar.DATE);
  • ){
  • return -MaxDate;
  • }else{
  • -monthOfNumber;
  • }
  • }
  • //获得上月最后一天的日期
  • public String getPreviousMonthEnd(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//减一个月
  • );//把日期设置为当月第一天
  • );//日期回滚一天,也就是本月最后一天
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获得下个月第一天的日期
  • public String getNextMonthFirst(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//减一个月
  • );//把日期设置为当月第一天
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获得下个月最后一天的日期
  • public String getNextMonthEnd(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//加一个月
  • );//把日期设置为当月第一天
  • );//日期回滚一天,也就是本月最后一天
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获得明年最后一天的日期
  • public String getNextYearEnd(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//加一个年
  • );
  • );
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获得明年第一天的日期
  • public String getNextYearFirst(){
  • String str = "";
  • SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  • Calendar lastDate = Calendar.getInstance();
  • );//加一个年
  • );
  • str=sdf.format(lastDate.getTime());
  • return str;
  • }
  • //获得本年有多少天
  • private int getMaxYear(){
  • Calendar cd = Calendar.getInstance();
  • );//把日期设为当年第一天
  • );//把日期回滚一天。
  • int MaxYear = cd.get(Calendar.DAY_OF_YEAR);
  • return MaxYear;
  • }
  • private int getYearPlus(){
  • Calendar cd = Calendar.getInstance();
  • int yearOfNumber = cd.get(Calendar.DAY_OF_YEAR);//获得当天是一年中的第几天
  • );//把日期设为当年第一天
  • );//把日期回滚一天。
  • int MaxYear = cd.get(Calendar.DAY_OF_YEAR);
  • ){
  • return -MaxYear;
  • }else{
  • -yearOfNumber;
  • }
  • }
  • //获得本年第一天的日期
  • public String getCurrentYearFirst(){
  • int yearPlus = this.getYearPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • currentDate.add(GregorianCalendar.DATE,yearPlus);
  • Date yearDay = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preYearDay = df.format(yearDay);
  • return preYearDay;
  • }
  • //获得本年最后一天的日期 *
  • public String getCurrentYearEnd(){
  • Date date = new Date();
  • SimpleDateFormat   dateFormat   =   new   SimpleDateFormat("yyyy");//可以方便地修改日期格式
  • String  years  = dateFormat.format(date);
  • return years+"-12-31";
  • }
  • //获得上年第一天的日期 *
  • public String getPreviousYearFirst(){
  • Date date = new Date();
  • SimpleDateFormat   dateFormat   =   new   SimpleDateFormat("yyyy");//可以方便地修改日期格式
  • String  years  = dateFormat.format(date); int years_value = Integer.parseInt(years);
  • years_value--;
  • return years_value+"-1-1";
  • }
  • //获得上年最后一天的日期
  • public String getPreviousYearEnd(){
  • weeks--;
  • int yearPlus = this.getYearPlus();
  • GregorianCalendar currentDate = new GregorianCalendar();
  • ));
  • Date yearDay = currentDate.getTime();
  • DateFormat df = DateFormat.getDateInstance();
  • String preYearDay = df.format(yearDay);
  • );
  • return preYearDay;
  • }
  • //获得本季度
  • public String getThisSeasonTime(int month){
  • }};
  • ;
  • ){
  • ;
  • }
  • ){
  • ;
  • }
  • ){
  • ;
  • }
  • ){
  • ;
  • }
  • ];
  • ];
  • Date date = new Date();
  • SimpleDateFormat   dateFormat   =   new   SimpleDateFormat("yyyy");//可以方便地修改日期格式
  • String  years  = dateFormat.format(date);
  • int years_value = Integer.parseInt(years);
  • ;//years+"-"+String.valueOf(start_month)+"-1";//getLastDayOfMonth(years_value,start_month);
  • int end_days = getLastDayOfMonth(years_value,end_month);
  • String seasonDate = years_value+"-"+start_month+"-"+start_days+";"+years_value+"-"+end_month+"-"+end_days;
  • return seasonDate;
  • }
  • /**
  • * 获取某年某月的最后一天
  • * @param year 年
  • * @param month 月
  • * @return 最后一天
  • */
  • private int getLastDayOfMonth(int year, int month) {
  • ) {
  • ;
  • }
  • ) {
  • ;
  • }
  • ) {
  • if (isLeapYear(year)) {
  • ;
  • else {
  • ;
  • }
  • }
  • ;
  • }
  • /**
  • * 是否闰年
  • * @param year 年
  • * @return
  • */
  • public boolean isLeapYear(int year) {
  • );
  • }

Java获取各种常用时间方法大全的更多相关文章

  1. Java 获取当前系统时间方法比较

    转载: http://blog.csdn.net/zzjjiandan/article/details/8372617 一. 获取当前系统时间和日期并格式化输出: import java.util.D ...

  2. Java获取当前的时间

    Java获取当前的时间 1.利用Java中的Calendar获取当前的时间 具体实现如下: /** * @Title:NowTime.java * @Package:com.you.model * @ ...

  3. java获取系统指定时间年月日

    java获取系统指定时间年月日 private String setDateTime(String falg) { Calendar c = Calendar.getInstance(); c.set ...

  4. java 获取系统当前时间并格式化

      java 获取系统当前时间并格式化 CreateTime--2018年5月9日11:41:00 Author:Marydon 实现方式有三种 updateTime--2018年7月23日09点32 ...

  5. LoadRunner中获取当前系统时间方法

    LoadRunner中获取当前系统时间方法 发表于:2017-6-02 11:41  作者:人生_0809   来源:51Testing软件测试网采编 字体:大 中 小 | 上一篇 | 下一篇 | 打 ...

  6. java ----获取路径的各种方法(总结)

    Java Web开发中路径问题小结 (1) Web开发中路径的几个基本概念 假设在浏览器中访问了如下的页面,如图1所示: 那么针对这个站点的几个基本概念表述如下: 1. web站点的根目录:http: ...

  7. Java中时间方法大全01(持续更新)

    下面这些方法都可以封装到一个工具类中 /** * 获取当前时间的时间戳 */ public static int getCurrentTimeIntValue() { return (int) (Sy ...

  8. java获取当前时间戳的方法

    获取当前时间戳 //方法 一 System.currentTimeMillis(); //方法 二 Calendar.getInstance().getTimeInMillis(); //方法 三 n ...

  9. Java中File常用的方法汇总

    创建:createNewFile()在指定位置创建一个空文件,成功就返回true,如果已存在就不创建,然后返回false.mkdir() 在指定位置创建一个单级文件夹.mkdirs() 在指定位置创建 ...

随机推荐

  1. HDU 5102 The K-th Distance

    题意:给你n-1条边,然后没两个节点的距离按照递增的顺序,求出前k项的和. 官方题解: 把所有边(u,v) 以及(v,u)放入一个队列,队列每弹出一个元素(u,v),对于所有与u相邻的点w,如果w!= ...

  2. Codeforces Round 261 Div.2 E Pashmak and Graph --DAG上的DP

    题意:n个点,m条边,每条边有一个权值,找一条边数最多的边权严格递增的路径,输出路径长度. 解法:先将边权从小到大排序,然后从大到小遍历,dp[u]表示从u出发能够构成的严格递增路径的最大长度. dp ...

  3. Bellman-Ford算法判负环

    算法思想:如果没有负权回路,dis数组应该会在n-1次松弛之后结束. 算法复杂度:O(n*m).比Dijkstra算法复杂度要高. 代码: bool Bellman_Ford(int s) { int ...

  4. AC日记——逃跑的拉尔夫 codevs 1026 (搜索)

    1026 逃跑的拉尔夫  时间限制: 1 s    空间限制: 128000 KB    题目等级 : 黄金 Gold 题解       题目描述 Description   年轻的拉尔夫开玩笑地从一 ...

  5. 使用 ssh 连接github的方法说明(gitub的官方说法)

    https://help.github.com/articles/generating-an-ssh-key/

  6. vuejs过滤器

    结合管道符 | {{messageOne | capitalize}} capitalize 首字母大写 {{messageOne | uppercase}} uppercase 大写字母 {{mes ...

  7. WPF基础——Application

    一.Application介绍 WPF中的Application对象用来进行一些全局的行为和操作,并且每个 Domain (应用程序域)中仅且只有一个 Application 实例存在.WPF App ...

  8. SgmlReader使用方法

    HtmlAgilityPack是一个开源的html解析器,底层是通过将html格式转成标准的xml格式文件来实现的(使用dot net里的XPathDocument等xml相关类),可以从这里下载:h ...

  9. DIV相关的操作总结

    由于有时候需要做网站项目,遇到CSS的问题总是需要百度或者google一下,比较麻烦,索性今天就来总结一下,这里就拿div开刀先. DIV在HTML前端页面布局中,非常重要,我们经常遇到的问题是:DI ...

  10. [CareerCup] 3.6 Sort Stack 栈排序

    3.6 Write a program to sort a stack in ascending order (with biggest items on top). You may use at m ...