All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.icc.multiinone.utils.DateUtils Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.multiinone.utils;

import com.dahuatech.icc.multiinone.exception.BusinessException;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

public class DateUtils {

    public static long getSecords(String dateStr){
        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try{
            Date date = dateFormat.parse(dateStr);
            return date.getTime() / 1000;
        }catch (Exception e){
            throw new BusinessException("时间格式转换错误");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy