/*
* 如何獲取系統當前日期
*/public static string getnowtime()
/**
* 獲得指定日期的前一天
* @param specifiedday
* @return
* @throws exception
*/ public static string getspecifieddaybefore(string specifiedday) catch (parseexception e)
c.settime(date);
int day=c.get(calendar.date);
c.set(calendar.date,day-1);
string daybefore=new ******dateformat("yyyy-mm-dd").format(c.gettime());
return daybefore;
} /**
* 獲得指定日期的後一天
* @param specifiedday
* @return
*/ public static string getspecifieddayafter(string specifiedday) catch (parseexception e)
c.settime(date);
int day=c.get(calendar.date);
c.set(calendar.date,day+1);
string dayafter=new ******dateformat("yyyy-mm-dd").format(c.gettime());
return dayafter; }/*
* 如何獲取指定日期的前一天是週幾
*/public static string getbefforeweekday(string specifiedday)
return weekday;}/*
* 如何獲取指定日期的下一天是週幾
*/public static string getaffterbefforeweekday(string specifiedday)
return weekday;
}
Java中獲取當前時間的常用方法
方法1 mm要大寫,ss要小寫,dd大寫表示一年中的第幾天,dd小寫表示一月中的第幾天 大寫hh和小寫hh表示24小時制和12小時制 date date new date 格式化日期 dateformat sdf new dateformat yyyy mm dd hh mm ss system.o...
java中獲取路徑 獲取檔案方法
1 system.getproperty user.dir 獲取使用者的當前工作路徑 2 class.getprotectiondomain getcodesource getlocation getpath 獲取jar包路徑位址 不過有兩個需要注意的 1.返回如果是個檔案說明獲取的是jar包完整路...
時間的獲取方法
sql code declare dtdatetime set dt getdate declare number intset number 3 1 指定日期該年的第一天或最後一天 a.年的第一天 select convert char 5 dt 120 1 1 b.年的最後一天 select c...