java时间相关处理小结
1.计算某一月份的最大天数
calendar time=calendar.getinstance();
time.clear();
time.set(calendar.year,year); //year 为 int
time.set(calendar.month,i-1);//注意,calendar对象默认一月为0
int day=time.getactualmaximum(calendar.day_of_month);//本月份的天数
注:在使用set方法之前,必须先clear一下,否则很多信息会继承自系统当前时间
2.calendar和date的转化
(1) calendar转化为date
calendar cal=calendar.getinstance();
date date=cal.gettime();
(2) date转化为calendar
date date=new date();
calendar cal=calendar.getinstance();
cal.settime(date);
3.格式化输出日期时间 (这个用的比较多)
date date=new date();
simpledateformat df=new simpledateformat("yyyy-mm-dd hh:mm:ss");
string time=df.format(date);
system.out.println(time);
4.计算一年中的第几星期
(1)计算某一天是一年中的第几星期
calendar cal=calendar.getinstance();
cal.set(calendar.year, 2006);
cal.set(calendar.month, 8);
cal.set(calendar.day_of_month, 3);
int weekno=cal.get(calendar.week_of_year);
(2)计算一年中的第几星期是几号
simpledateformat df=new simpledateformat("yyyy-mm-dd");
calendar cal=calendar.getinstance();
cal.set(calendar.year, 2006);
cal.set(calendar.week_of_year, 1);
cal.set(calendar.day_of_week, calendar.monday);
system.out.println(df.format(cal.gettime()));
输出:
2006-01-02
5.add()和roll()的用法(不太常用)
(1)add()方法
simpledateformat df=new simpledateformat("yyyy-mm-dd");
calendar cal=calendar.getinstance();
cal.set(calendar.year, 2006);
cal.set(calendar.month, 8);
cal.set(calendar.day_of_month, 3);
cal.add(calendar.date, -4);
date date=cal.gettime();
system.out.println(df.format(date));
cal.add(calendar.date, 4);
date=cal.gettime();
system.out.println(df.format(date));
输出:
2006-08-30
2006-09-03
(2)roll方法
cal.set(calendar.year, 2006);
cal.set(calendar.month, 8);
cal.set(calendar.day_of_month, 3);
cal.roll(calendar.date, -4);
date=cal.gettime();
system.out.println(df.format(date));
cal.roll(calendar.date, 4);
date=cal.gettime();
system.out.println(df.format(date));
输出:
2006-09-29
2006-09-03
可见,roll()方法在本月内循环,一般使用add()方法;
6.计算两个任意时间中间的间隔天数(这个比较常用)
(1)传进calendar对象
public int getintervaldays(calendar startday,calendar endday)...{
if(startday.after(endday))...{
calendar cal=startday;
startday=endday;
endday=cal;
}
long sl=startday.gettimeinmillis();
long el=endday.gettimeinmillis();
long ei=el-sl;
return (int)(ei/(1000*60*60*24));
}
(2)传进date对象
public int getintervaldays(date startday,date endday)...{
if(startday.after(endday))...{
date cal=startday;
startday=endday;
endday=cal;
}
long sl=startday.gettime();
long el=endday.gettime();
long ei=el-sl;
return (int)(ei/(1000*60*60*24));
}
(3)改进精确计算相隔天数的方法
public int getdaysbetween (calendar d1, calendar d2) ...{
if (d1.after(d2)) ...{
java.util.calendar swap = d1;
d1 = d2;
d2 = swap;
}
int days = d2.get(calendar.day_of_year) - d1.get(calendar.day_of_year);
int y2 = d2.get(calendar.year);
if (d1.get(calendar.year) != y2) ...{
d1 = (calendar) d1.clone();
do ...{
days += d1.getactualmaximum(calendar.day_of_year);//得到当年的实际天数
d1.add(calendar.year, 1);
} while (d1.get(calendar.year) != y2);
}
return days;
}
注意:通过上面的方法可以衍生出求任何时间,如要查出邮箱三周之内收到的邮件(得到当前系统时间-再得到三周前时间)用收件的时间去匹配 最好装化成 long去比较
如:1年前日期(注意毫秒的转换)
java.util.date mydate=new java.util.date();
long mytime=(mydate.gettime()/1000)-60*60*24*365;
mydate.settime(mytime*1000);
string mdate=formatter.format(mydate);
7. string 和 date ,long 之间相互转换 (最常用)
字符串转化成时间类型(字符串可以是任意类型,只要和simpledateformat中的格式一致即可)
通常我们取时间跨度的时候,会substring出具体时间--long-比较
java.text.simpledateformat sdf = new java.text.simpledateformat("m/dd/yyyy hh:mm:ss a",java.util.locale.us);
java.util.date d = sdf.parse("5/13/2003 10:31:37 am");
long dvalue=d.gettime();
simpledateformat formatter = new simpledateformat("yyyy-mm-dd hh:mm:ss");
string mdatetime1=formatter.format(d);
8. 通过时间求时间
年月周求日期
simpledateformat formatter2 = new simpledateformat("yyyy-mm f e");
java.util.date date2= formatter2.parse("2003-05 5 星期五");
simpledateformat formatter3 = new simpledateformat("yyyy-mm-dd");
string mydate2=formatter3.format(date2);
求是星期几
mydate= myformatter.parse("2001-1-1");
simpledateformat formatter4 = new simpledateformat("e");
string mydate3=formatter4.format(mydate);
9. java 和 具体的数据库结合
在开发web应用中,针对不同的数据库日期类型,我们需要在我们的程序中对日期类型做各种不同的转换。若对应数据库数据是oracle的date类型,即只需要年月日的,可以选择使用java.sql.date类型,若对应的是mssqlserver 数据库的datetime类型,即需要年月日时分秒的,选择java.sql.timestamp类型
你可以使用dateformat定义时间日期的格式,转一个字符串即可
class datetest{
*method 将字符串类型的日期转换为一个timestamp(时间戳记java.sql.timestamp)
*@param datestring 需要转换为timestamp的字符串
*@return datatime timestamp
public final static java.sql.timestamp string2time(string datestring)
throws java.text.parseexception {
dateformat dateformat;
dateformat = new simpledateformat("yyyy-mm-dd kk:mm:ss.sss", locale.english);//设定格式
//dateformat = new simpledateformat("yyyy-mm-dd kk:mm:ss", locale.english);
dateformat.setlenient(false);
java.util.date timedate = dateformat.parse(datestring);//util类型
java.sql.timestamp datetime = new java.sql.timestamp(timedate.gettime());//timestamp类型,timedate.gettime()返回一个long型
return datetime;
}
*method 将字符串类型的日期转换为一个date(java.sql.date)
*@param datestring 需要转换为date的字符串
*@return datatime date
public final static java.sql.date string2date(string datestring)
throws java.lang.exception {
dateformat dateformat;
dateformat = new simpledateformat("yyyy-mm-dd", locale.english);
dateformat.setlenient(false);
java.util.date timedate = dateformat.parse(datestring);//util类型
java.sql.date datetime = new java.sql.date(timedate.gettime());//sql类型
return datetime;
}
public static void main(string[] args){
date da = new date();
注意:这个地方da.gettime()得到的是一个long型的值
system.out.println(da.gettime());
由日期date转换为timestamp
第一种方法:使用new timestamp(long)
timestamp t = new timestamp(new date().gettime());
system.out.println(t);
第二种方法:使用timestamp(int year,int month,int date,int hour,int minute,int second,int nano)
timestamp tt = new timestamp(calendar.getinstance().get(
calendar.year) - 1900, calendar.getinstance().get(
calendar.month), calendar.getinstance().get(
calendar.date), calendar.getinstance().get(
calendar.hour), calendar.getinstance().get(
calendar.minute), calendar.getinstance().get(
calendar.second), 0);
system.out.println(tt);
try {
string stodate = "2005-8-18";//用于转换成java.sql.date的字符串
string stotimestamp = "2005-8-18 14:21:12.123";//用于转换成java.sql.timestamp的字符串
date date1 = string2date(stodate);
timestamp date2 = string2time(stotimestamp);
system.out.println("date:"+date1.tostring());//结果显示
system.out.println("timestamp:"+date2.tostring());//结果显示
}catch(exception e) {
e.printstacktrace();
}
}
上一篇: java中的移位运算符心得总结