- 浏览: 588506 次
- 性别:
- 来自: 青岛
文章分类
最新评论
-
Mr_胡:
确实是jquery版本问题,用新版本的jquery没用
Eclipse 支持jQuery 自动提示 -
redcoatjk:
那遇到事务怎么办?事务是配置到service上.在Listen ...
Listener中取Spring容器中Bean的实例 -
dqd979231776:
+1我用遇到了这个问题,解决了好长时间
<input type="image"> 和 <img> 用法区别 -
李庆辉:
Listener中取Spring容器中Bean的实例 -
骑驴走天下:
膜拜大神,讲的清楚明白,今天正好遇到这个问题,本想用大神说的第 ...
Listener中取Spring容器中Bean的实例
/** * 时间处理类 */ package org.boss.web; import java.util.Calendar; import java.util.Date; import java.text.ParseException; import java.text.SimpleDateFormat; public class CalendarDemo { private Calendar calendar; private Date date; private SimpleDateFormat simpleFormat; public CalendarDemo() { calendar = Calendar.getInstance(); date = new Date(); calendar.setTime(date); calendar.setFirstDayOfWeek(calendar.MONDAY); } /** * 获取日期的年的值,数字型。 */ public String getYear() { return String.valueOf(calendar.get(calendar.YEAR)); } /** * 获取日期的月的值,数字型。 */ public String getMonth() { java.text.DecimalFormat format=new java.text.DecimalFormat("00"); String month=format.format(calendar.get(calendar.MONTH) + 1); return month; } /** * 获取日期的日的值,数字型。 */ public String getDay() { java.text.DecimalFormat format=new java.text.DecimalFormat("00"); String day=format.format(calendar.get(calendar.DATE)); return day; } /** * 获取日期的星期的值,数字型。 */ public int getWeekOfMonth() { return calendar.get(calendar.WEEK_OF_MONTH); } /** * 获取时间的小时的值,数字型。 */ public String getHour() { java.text.DecimalFormat format=new java.text.DecimalFormat("00"); String hour=format.format(calendar.get(calendar.HOUR_OF_DAY)); return hour; } /** * 获取日期的分钟的值,数字型。 */ public String getMinute() { java.text.DecimalFormat format=new java.text.DecimalFormat("00"); String minute=format.format(calendar.get(calendar.MINUTE)); return minute; } /** * 获取日期的秒钟的值,数字型。 */ public String getSecond() { java.text.DecimalFormat format=new java.text.DecimalFormat("00"); String second=format.format(calendar.get(calendar.SECOND)); return second; } /** * 获取一个星期中的某天.文字型。 * @return */ public String getDayOfWeek(){ int week= calendar.get(calendar.DAY_OF_WEEK); String strweek=null; switch(week){ case 0: strweek="一"; break; case 1: strweek="二"; break; case 2: strweek="三"; break; case 3: strweek="四"; break; case 4: strweek="五"; break; case 5: strweek="六"; break; case 6: strweek="日"; break; default: } return strweek; } public String getDate() {//将时间转成字符型 return String.valueOf(this.getYear()) + "-" + String.valueOf(this.getMonth()) + "-" + String.valueOf(this.getDay()) + " " + String.valueOf(this.getHour()) + ":" + String.valueOf(this.getMinute()) + ":" + String.valueOf(this.getSecond()); } public Date stringToDate(String strDate){//将字符转成时间 try{ simpleFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//日期的字符强制转换 date=simpleFormat.parse(strDate); return date; }catch(ParseException e){ e.printStackTrace(); } return null; } public String getSampleDate(){//得到简介时间 return String.valueOf(this.getYear()) + "-" + String.valueOf(this.getMonth()) + "-" + String.valueOf(this.getDay()); } public Date sampleStringToDate(String strDate){//将简介时间字符串转成时间 try{ simpleFormat=new SimpleDateFormat("yyyy-MM-dd");//日期的字符强制转换 date=simpleFormat.parse(strDate); return date; }catch(ParseException e){ e.printStackTrace(); } return null; } public String getEndTime(int month){//得到结束时间(按月计算) int nowyear=Integer.parseInt(this.getYear()); int nowmonth=Integer.parseInt(this.getMonth()); int endmonth=nowmonth+month; if(endmonth>12){ endmonth=endmonth-12; nowyear+=1; } String nowDate=String.valueOf(nowyear) + "-" + String.valueOf(endmonth) + "-" + String.valueOf(this.getDay()) + " " + String.valueOf(this.getHour()) + ":" + String.valueOf(this.getMinute()) + ":" + String.valueOf(this.getSecond()); return nowDate; } public int getNumberOfDays(String startTime,String endTime){//比较两个String 时间的相差天数 Date startDate=this.stringToDate(startTime); long longStartTime=startDate.getTime();//得到时间的毫秒 Date endDate=this.stringToDate(endTime); long longEndTime=endDate.getTime();//得到时间的毫秒 int day=(int)((longStartTime-longEndTime)/ 86400000);//得到相差的天数。 return day; } }
发表评论
-
More than one fragment with the name [spring_web] was found.
2019-04-19 13:38 3792项目跑的好好的。突然之间报错,不能tomcat启动。 报 ... -
Linux(CentOS7)tomcat8启动报错
2018-04-26 08:57 1259服务器:Centos7 ,Tomcat8 ,JDK8 项目 ... -
java中Double数值的计算。
2011-12-21 17:31 22757double的计算不精确,会有类似0.000000000 ... -
java中连接池的原理,既常用的连接池有哪几种?
2011-05-16 08:46 3155java中数据库的连接是一个非常耗资源的动作,频繁的建立 ... -
Statement 和PreparedStatement的区别
2011-05-16 08:43 14221. Statement用于处理静态 SQL 语句, P ... -
java中的接口是什么?面向接口编程的好处?
2011-05-16 08:40 2091Java中的接口是一系列方法的声明,是一些方法特征的集 ... -
PrintWriter 类中println和write方法的区别
2011-05-10 08:32 2118问题:编写Socket聊天软件,使用PrintWriter类取 ... -
java class文件反编译---jad、jadclipse
2011-05-05 17:50 2570eclipse的java的class文件的反编译工具:jad ... -
Access restriction: The type SwingUtilities2 is not accessible due to restricti
2011-03-16 09:20 2228报错:Access restriction: The type ... -
java线程的sleep(),wait(),notify(),yield()方法的区别要点
2011-03-03 16:38 19591.sleep()使线程休眠一段时间,一段时间结束后,线程 ... -
java中的栈内存和堆内存
2010-12-15 17:37 1242Java把内存分成两种 ... -
Java泛型再学习
2010-09-30 15:20 1276泛型引入java语言已经有很长一段时间了,在JDK5出来的 ... -
读写properties 文件
2010-01-21 17:08 2413/** * 通用IO类。读取,写入properties文件 ... -
该文件不具有良好格式:DOCTYPE-ExternalID的名称既是SYSTEM又是PUBLIC!
2009-08-12 11:50 2648<?xml version="1.0" ... -
dom4j操作XML
2009-08-11 23:43 2353虽然DOM4J 代表了完全独立的开发结果,但最初,它是JD ... -
网站单例登录
2009-04-07 13:31 2012实现网站的单例登录: 1, 在用户表里增加一个判断登 ... -
log4j.log4j.properties大全
2009-03-19 06:59 1442log4j.rootLogger=DEBUG,CONSOLE, ... -
JSP指令元素简介
2009-01-14 16:30 1497指令元素(Directives ... -
java MD5 加密
2008-08-23 17:30 2088/** * java.security包中的MessageD ... -
自动得到汉语拼音
2008-08-23 17:27 1431import java.util.Iterator; impo ...
相关推荐
提供友好的时间处理接口,方便处理java时间相关问题
在Java中,日期时间处理类的情况有所不同。Java 8之前,主要使用`java.util.Date`和`java.text.SimpleDateFormat`进行日期时间的处理,但这两个类的设计被认为不够理想。自Java 8起,引入了`java.time`包,其中包括`...
通过这样的时间处理类,开发者可以在项目中轻松地实现各种时间相关的功能,而无需重复编写相同的代码。这不仅可以提高开发效率,也有助于保持代码的整洁和一致性。在实际使用时,只需要实例化这个类,并调用相应的...
本源码资源提供了Java中的日期时间处理类相关内容,包括日期、时间和时区的操作方法和示例。它涵盖了Java编程中常用的日期时间处理需求以及如何使用日期时间类来解决这些问题。 适用人群 本源码资源适用于具备一定...
提供各种时间操作,格式化时间格式,时间格式的转换.
对年月日进行处理,计算延迟一段时间后的日期问题。 在订购类业务中,频繁涉及时间计算问题。 两个构造函数 public Kdate(int days) public Kdate(int year, int month, int day) 三个公共接口: public Kdate ...
Java日期时间处理在编程中是一项常见任务,但Java标准库中的`java.util.Date`和`Calendar`类在使用上往往被认为复杂且不直观。为了解决这个问题,`date4j`库应运而生,它提供了更为简洁和现代的方式来处理日期和时间...
在这篇文章中,我们将重点介绍PHP中的时间处理类,如DateTime、DateTimeZone、DateInterval和DatePeriod,这些类可以简化我们在PHP项目中进行日期和时间操作的过程。 首先,我们来详细解释一下这些类的用途: 1. ...
快速处理时间格式,拥有丰富的时间处理格式
我们可以创建一个专门的时间处理类,比如`TimeHandler`,在这个类中定义各种方法,如获取当前时间、格式化时间、计算时间差等。例如: ```python class TimeHandler: @staticmethod def get_current_timestamp():...
`java.util.Date`是Java中最早的日期时间处理类之一。它代表特定的时间点,精确到毫秒。在给定的代码片段中,`Date`对象被创建并用于获取当前时间。然而,`Date`类的设计并不理想,它缺乏线程安全性和灵活性,因此在...
接下来,Calendar类是比Date更加强大的日期时间处理类,它是一个抽象类,通常通过Calendar.getInstance()获取其子类的实例。Calendar类提供了更丰富的功能,包括设置和获取日期时间的各种组件,如YEAR、MONTH、DATE...
首先,`DateUtils` 类通常是一个自定义的时间处理类,它扩展了Java内置的`java.util.Calendar`或`java.time`包的功能。`DateUtils` 提供了一系列静态方法,用于格式化、解析日期,进行日期加减操作,比较日期等。...
`java.util.Date`类是Java中最基础的日期时间处理类,它能够精确到毫秒级别,表示的是从1970年1月1日00:00:00.000 GMT(格林威治标准时间)到当前时间的毫秒差值。 格林威治标准时间(GMT)是基于地球自转计算的...
`java.time`包包含如`LocalDate`, `LocalTime`, `LocalDateTime`等类,提供了更强大且易用的时间处理功能。然而,由于许多老项目仍然使用`java.util.Date`,DateUtil可能仍然基于这个旧的API,或者它也可能已经进行...
最后,`java.util.Calendar`和`java.util.Date`是Java早期版本中的日期和时间处理类,虽然现在推荐使用`java.time`包,但它们依然广泛存在。理解这两个类的用法对于处理遗留代码仍然是必要的。 总结,Java中的时间...
时间的处理各种方式 java8 技术 对时间处理的各种方式
Java获取时间是一个重要的编程任务,尤其在开发过程中处理日期和时间相关的逻辑时。Java提供了多种方式来操作和...在实际开发中,根据项目需求选择合适的时间处理类和方法,可以更好地处理各种日期和时间相关的问题。
总结来说,这个"日期和时间的扩展类2.2版的更新程序"是一个用于增强日期和时间处理的C++库,它可能包括用户界面控件,提供源码供定制,与系统时间功能有深度集成,并且包含了一些关键的日期时间处理类。更新可能涉及...