·您的位置: 首页 » 资源教程 » 编程开发 » JAVA、JSP » 取时间的小类

取时间的小类

类别: JAVA教程  评论数:0 总得分:0
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()



-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1