Java常用工具类整理之时间类转换
程序员文章站
2024-03-14 14:42:58
...
时间常用工具类
public class DateUtil {
public static String type="yyyy-MM-dd HH:mm:ss";
public static SimpleDateFormat sdf = new SimpleDateFormat(type);
public static void main(String[] args) throws ParseException {
String fd = getFormatDate(getMils());
Date parse = sdf.parse(fd);
System.out.println(parse);
}
public static Date format2Date(String format){
try {
return sdf.parse(format);
} catch (ParseException e) {
System.out.println("时间转换异常");
//返回当前时间
return new Date();
// e.printStackTrace();
}
}
/**
* 得到现在的时间格式化显示
* @param mils
* @return
*/
public static String getFormatDate(long mils) {
return sdf.format(mils);
}
/**
* 13位转成10位
* @param mils
* @return
*/
public static long thir2ten(long mils) {
return mils/1000;
}
/**
* 10位转成13位
* @param mils
* @return
*/
public static long ten2thir(long mils) {
return mils*1000;
}
//得到时间戳
public static long getMils(){
return System.currentTimeMillis();
}
}