ANDRU-PC\Andru
2023-01-11 578f7bbffa1b6bf8d4a53175eedf1ed4f6265ae4
调整备注
1个文件已修改
8 ■■■■ 已修改文件
src/main/java/com/hx/util/DateUtil.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/hx/util/DateUtil.java
@@ -455,7 +455,7 @@
     * endTime比startTime多的天数
     * @param startTime 最小时间
     * @param endTime 最大时间
     * @return
     * @return 返回
     */
    public static Integer differDay(Date startTime,Date endTime){
        Calendar cal1 = Calendar.getInstance();
@@ -500,8 +500,7 @@
    }
    /**把秒转换成X天X时X分X秒*/
    public static String getChineseStr(Integer second)
    {
    public static String getChineseStr(Integer second) {
        int day = 24 * 60 * 60;
        int hour = 60 * 60;
        int min = 60;
@@ -695,6 +694,7 @@
        cal.roll(Calendar.DATE, -1);
        return cal.getActualMaximum(Calendar.DATE);
    }
    /**获取月份的天数
     * @param year 年份
     * @param month 月份
@@ -712,7 +712,7 @@
    /**获取月份的天数
     * @param yearMonth 年月
     * @param format 时间格式
     * @return
     * @return 返回
     */
    public static int getMonthDays(String yearMonth,String format) {
        SimpleDateFormat sdf = new SimpleDateFormat(format);