时间操作(其实挺重要)

自己一直以为时间没有什么好学习的,但是时间在实际中还是应用的很广,不管是统计还是查询:

 

现在记录一些知识>>

 

写道
public final class DateUtils {
public static Date parseDate(String date, String patten){
SimpleDateFormat sdf = new SimpleDateFormat(patten);
return sdf.parse(date, new ParsePosition(0));
}

public static java.sql.Date parseSQLDate(String date){
java.sql.Date date1 = new java.sql.Date(parseDate(date).getTime());
return date1;
}

public static Date parseDate(String date){
if(date == null)
return null;
return parseDate(date , "yyyy-MM-dd HH:mm:ss");
}

public static String getDateString(Date date, String patten){
SimpleDateFormat sdf = new SimpleDateFormat(patten);
return sdf.format(date);
}

public static String getDateString(Date date){
if(date == null)
return "";
return getDateString(date , "yyyy-MM-dd HH:mm:ss");
}

public static String getNowDateString(){
Date date = new Date();
return getDateString(date);
}

public static String getOracleDate(String s){
if(s == null || s.equals(""))
return "";

if(s.length() > 19)
s = s.substring(0 , 19);
return s;
}

public static Timestamp parseTimeStamp(String str){
return java.sql.Timestamp.valueOf(str);
}

public static String getTimeStampString(Timestamp time){
if(time == null)
return null;
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return df.format(time);
}

public static Timestamp getNowTimeStamp(){
return parseTimeStamp(getNowDateString());
}

public static String transDateToJSFormat(String date){
if(date == null || date.equals(""))
return "";
if(date.length() >= 19){
String str = date.substring(0, 10);
String[] strs = str.split("-");
if(strs.length == 3)
return strs[1] + "/" + strs[2] + "/" + strs[0] + date.substring(10 , 18);
}
return "";
}
}

 

上面是日期类型的工具类 可以根据自己需要多多添加 。

 

 

添加时间相减的方法(这个方法我只试验过 日期格式是“yyyy-MM-dd HH:mm:ss”的)

    pulbic static String getTimeDiffer(String startTime,endTime) {

         long time = DateUtils.parseDate(startTime).getTime() -
           DateUtils.parseDate(endTime).getTime();
        long days = time/(1000*60*60*24);//天
        long totalhours = time/(1000*60*60) - days*24;//时  
       long totalminutes = time/(1000*60) - days*24*60 - totalhours*60;//分  
       long totalseconds = time/(1000)- days*24*60*60 - totalhours*60*60 - totalminutes*60;//秒  
       String total_time = days + "天" + totalhours+"时"+totalminutes+"分"+totalseconds+"秒";

       return total_time;

    }

 

等遇到别的的时候我会再添加

你可能感兴趣的:(sql)