Commit 73730be0 by lzxry

bugfix

parent cf1f5f45
......@@ -1108,7 +1108,7 @@ public class DateUtil {
/**
* 某一个月号第一天和最后一天
*
* @param date
* @param dateStr
* @return
*/
public static String getFirstday_Lastday_Month(String dateStr) {
......@@ -1158,7 +1158,7 @@ public class DateUtil {
/**
* 某一个月号第一天
*
* @param date
* @param monthno
* @return
*/
public static String getFirstdayOfMonth(String monthno) {
......@@ -1197,7 +1197,7 @@ public class DateUtil {
/**
* 某一个月号最后一天
*
* @param date
* @param monthno
* @return
*/
public static String getLastdayOfMonth(String monthno) {
......@@ -1499,6 +1499,10 @@ public class DateUtil {
return sdf.format(date);
}
public static String now(){
return format(new Date(), DateUtil.C_TIME_PATTON_DEFAULT);
}
public static void main(String[] args) {
// String UTCTimeStr = getUTCTimeStr() ;
// System.out.println(UTCTimeStr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment