用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心Java

取时间的小类

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 18:51:15
package pub.dates;
import java.text.DateFormat;
import java.util.*;

public class Dates
{
Date param=null;
Calendar ca=Calendar.getInstance();
public Dates()
{
  param=new Date();
  ca.setTime(param);
}
public Dates(Date vars)
{
  param=vars;
  ca.setTime(param);
}
public Dates(int y,int m,int d)
{
  y=y-1900;m=m-1;
  param=new Date(y,m,d);
  ca.setTime(param);
}
//
public int getYear()
{
  return ca.get(Calendar.YEAR);
}
public int getMonth()
{
  return 1+ca.get(Calendar.MONTH);
}
public int getDay()
{
  return ca.get(Calendar.DAY_OF_MONTH);
}
public int getHour()
{
  return ca.get(Calendar.HOUR_OF_DAY);
}
    
public int getMinute()
{
  return ca.get(Calendar.MINUTE);
}

public int getSecond()
{
  return ca.get(Calendar.SECOND);
}
public String getDate()
{
  return getYear()+"-"+getMonth()+"-"+getDay();
}

public String getTime()
{
  return getHour() + ":" + getMinute() + ":" + getSecond();
}
}
//package部分自己随意.
构造方法:(3个)
Dates();
Dates(Date date);
Dates(int y,int m, int d); y,m,d是年.月.日

方法:
getYear();  getMonth();  getDay(); getHour();  getMinute(); getSecond(); getDate(); getTime()

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:27,500.00000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号