java时间的处理

  1. /** 
  2.    * 得到几天前的时间 
  3.    * @param d 
  4.    * @param day 
  5.    * @return 
  6.    */  
  7.   public static Date getDateBefore(Date d,int day){  
  8.    Calendar now =Calendar.getInstance();  
  9.    now.setTime(d);  
  10.    now.set(Calendar.DATE,now.get(Calendar.DATE)-day);  
  11.    return now.getTime();  
  12.   }  
  13.     
  14.   /** 
  15.    * 得到几天后的时间 
  16.    * @param d 
  17.    * @param day 
  18.    * @return 
  19.    */  
  20.   public static Date getDateAfter(Date d,int day){  
  21.    Calendar now =Calendar.getInstance();  
  22.    now.setTime(d);  
  23.    now.set(Calendar.DATE,now.get(Calendar.DATE)+day);  
  24.    return now.getTime();  
  25.   }  
  26.   
  27. /** 
  28. *获取今天的时间的凌晨 到 23点 
  29. * 
  30. */  
  31. private void initTime(){  
  32.         Calendar cal = Calendar.getInstance();  
  33.         SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");  
  34.         this.startTime=sdf.format(cal.getTime())+" 00:00:00";  
  35.         this.endTime=sdf.format(cal.getTime())+" 23:59:59";  
  36.     }  

date转string(包括格式)
import java.text.SimpleDateFormat;
import java.util.Date;
public class test {
 public static void main(String []aa){
  SimpleDateFormat dateformat1=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss E");
  String a1=dateformat1.format(new Date());
  System.out.println("时间2:"+a1);
  System.out.println(new Date().getYear()+1900);
  
  SimpleDateFormat dateformat2=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒 E ");  
        String a2=dateformat2.format(new Date());
        System.out.println("时间2:"+a2); 
 }
}
 
 
string转date
用SimpleDateFormat来转换
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = sdf.parse("2008-08-08 12:10:12");
具体请参考JDK API文档

另外 转换成DATE类型后并不会因为转换前的字符串是什么样子而不同 DATE类型的内部表示永远是一样的 所以你的第2条要求是没有意义的 数据库如何显示这个DATE类型只是数据库自己的关系 和DATE本身无关

如果你希望要自定义Date的显示 同样可是使用SimpleDateFormat类来实现
只需要
String date = sdf.format(new Date());
就可以了


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值