日期格式大全

更新时间:2023-04-25 23:10:57 阅读: 评论:0


2023年4月25日发(作者:淄博公交)Java中日期格式转换



/**

* 字符串转换为


* 支持格式为 G 'at好段好句 ' hh:mm:ss z 如 '2002-1-1 AD at 22:10:59 PSD'


* yy/MM/dd HH:mm:ss 如 '2002/1/1 17:55:00'


* yy/MM/dd HH:mm:ss pm 如 '2002/1/1 17:55:00 pm'


* yy-MM-dd HH:mm:ss 如 '2002-1-1 17:55:00'


* yy-MM-dd HH:mm:ss am 如 '2002-1-1 17:55:00 am'


* @param time String 字符串


* @return Date 日期


*/

public static Date stringToDate(String time){

SimpleDateFormat formatter;

int tempPos=f("AD") ;

time=() ;

formatter = new SimpleDateFormat (" G 'at' hh:mm:ss z");

if(tempPos>-1){

time=ing(0,tempPos)+

"公元"+ing(tempPos+"AD".length());//china

formatter = new SimpleDateFormat (" G 'at' hh:mm:ss z");

}

tempPos=f("-");

if(tempPos>-1&&(f(" ")<0)){

formatter = new SimpleDateFormat ("yyyyMMddHHmmssZ");

}

el if((f("/")>-1) &&(f(" ")>-1)){

formatter = new SimpleDateFormat ("yyyy/MM/dd HH:mm:ss");

}

el if((f("-")>-1) &&(f(" ")>-1)){

formatter = new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");

}

el if((f("/")>-1) &&(f("am")>-1) ||(f("pm")>-1)){

formatter = new SimpleDateFormat ("yyyy-MM-dd KK:mm:ss a");

}

el if((f("-")>-1) &&(f("am")>-1) ||(f("pm")>-1)){

formatter = new SimpleDateFormat ("yyyy-MM-dd KK:mm:ss a");

}

ParPosition pos = new ParPosition(0);

ctime = (time, pos);



return ctime;

}



/**

* 将 格式转换为字符串格式'yyyy-MM-dd HH:mm:ss'(24小时制)


* 如Sat May 11 17:24:21 CST 2002 to '2002-05-11 17:24:21'


* @param time Date 日期


* @return String 字符串


*/





public static String dateToString(Date time){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");

String ctime = (time);



return ctime;

}



/**

* 将 格式转换为字符串格式'yyyy-MM-dd HH:mm:ss a'(12小时制)


* 如Sat May 11 17:23:22 CST 2002 to '2002-05-11 05:23:22 下午'


* @param time Date 日期


* @param x int 任意整数如:1


* @return String 字符串


*/

public static String dateToString(Date time,int x){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("yyyy-MM-dd KK:mm:ss a");

String ctime = (time);



return ctime;

}



/**

*取系统当前时间:返回只值为如下形式

*2002-10-30 20:24:39

* @return String

*/

public static String Now(){

return dateToString(new Date());

}



/**

*取系统当前时间:返回只值为如下形式

*2002-10-30 08:28:5

6 下午

*@param hour 为任意整数

*@return String

*/

public static String Now(int hour){

return dateToString(new Date(),hour);

}



/**

*取系统当前时间:返回值为如下形式

*2002-10-30

*@return String

*/

public static String getYYYY_MM_DD(){

return dateToString(new Date()).substring(0,10);



}



/**

*取系统给定时间:返回值为如下形式

*2002-10-30

*@return String

*/

public static String getYYYY_MM_DD(String date){

return ing(0,10);



}



public static String getHour(){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("H");

String ctime = (new Date());

return ctime;

}



public static String getDay(){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("d");

String ctime = (new Date());

return ctime;

}



public static String getMonth(阿米巴管理 ){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("M");

String ctime = (new Date());

return ctime;

}



public static String getYear(){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("yyyy");

String ctime = (new Date());

return ctime;

}



public static String getWeek(){

SimpleDateFormat formatter;

formatter = new SimpleDateFormat ("E");

String ctime = (new Date());

return ctime;

}



在jsp页面中的日期格式和sqlrver中的日期格式不一样,怎样统一?



在页面上显示输出时,用下面的函数处理一下



pub艺术领域教案 lic class DateUtil(){

public static String fmtShortEnu(Date myDate) {

SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd");

String strDate = (myDate);

return strDate;

}

}



new DateFormat("yyyy-MM-dd HH:mm:ss");

new DateFormat("yyyy-MM-dd")

建议还是把sqlrver的字段类型改成varchar的吧,用字符串处理可以完全按照自己的意愿处理,没有特殊的需求,不要使用date型



字串日期格式转换

用的API是SimpleDateFormat,它是属於DateFormat,工程部工作总结 所以请记得import进来!



用法:

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

这一行最重要,它确立了转换的格式,yyyy是完整的西元年,MM是月份,dd是日期, 至於HH:mm:ss就不需要我再解释了吧!

ps:为什麽有的格式大写,有的格式小写,那是怕避免混淆,例如MM是月份,mm是分;HH是24小时制,而hh是12小时制



1.字串转日期:

2002-10-8 15:30:22要把它转成日期,可以用

Date date=("2002-10-8 15:30:22");

2.日期转字串

假如把今天的日期转成字苏军入侵阿富汗 串可用

String datestr=(new Date());

这个字串的内容便类似2002-10-08 14:55:38



透过这个API我们便

可以随心所欲的将日期转成我们想要的字串格式,例如希望将日期输出成2002年10月08日,

我们可以这麽写:

SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日");

String datestr=(new Date());

datestr便会依照我们设定的格式输出



//对日期格式的转换成("yyyy-MM-dd")格式的方法

public Convert(String str)

{

DateFormat sdf = new DateFormat("yyyy-MM-dd");

try

{

d = (str);

d1 = new (e());

return d1;

}

catch(Exception ex)

{

tackTrace();

return null;

}

}

应用如下:

e(7,t(Birth())); // @DATETIME



常用日期问题集锦



1、获取服务器端当前日期:

<%@ page import=""%>

<%

Date myDate = new Date();

%>



2、获取当前年、月、日:

<%@ page import=""%>



<%

Date myDate = new Date();

int thisYear = r() + 1900;//thisYear = 2003

int thisMonth = th() + 1;//thisMonth = 5

int thisDate = e();//thisDate = 30

%>



3、按本地时区输出当前日期

<%@ page import=""%>

<%

Date myDate = new Date();

n(leString());

%>

输出结果为:

2003-5-30



4、获取数据库中字段名为”publish_time“、类型为Datetime的值

<%@ page import=""%>

<%

...连接数据库...

ResultSet rs = ...

Date sDate = e("publish_time");

%>

[code]



5、按照指定格式打印日期

[code]

<%@ page import=""%>

<%@ page import="rmat"%>

<%

Date dNow = new Date();



SimpleDateFormat formatter = new SimpleDateFormat("E 'at' hh:mm:ss a zzz");

n("It is " + (dNow));

%>



输出的结果为:

It is 星期五 2003.05.30 at 11:30:46 上午 CST

(更为详尽的格式符号请参看SimpleDateFormat类)



6、将字符串转换为日期

<%@ page import=""%>

<%@ page import="rmat"%>

<%

String input = "1222-11-11";

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");

Date t = null;

try{

t = (input);

n(t);

}catch(ParException e){

n("unparable using " + formatter);

}

%>

输出结果为:

Fri Nov 11 00:00:00 CST 1222



7、计算日期之间的间隔

<%@ page import=""%>

<%@ page import="rmat"%>

<%

String input = "2003-05-01";

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");

Date d1 = null;

try{

d1 = (input);

}catch(ParException e){

n("unparable using " + formatter);

}



Date d2 = new Date();



long diff = e() - e();

n("Difference is " + (diff/(1000*60*60*24)) + " days.");

%>

输出结果为:

Difference is 29 days.



8

、日期的加减运算

方法:用Calendar类的add()方法

<%@ page import=".*"%>

<%@ page import=".*"%>

<%

Calendar now = tance();

SimpleDateFormat formatter = new SimpleDateFormat("E 'at' hh:mm:ss a zzz");

n("It is now " + (e()));

(_OF_YEAR,-(365*2));

n("
");

n("Two years ago was " + (e()));

%>

输出结果为:

It is now 星期五 2003.05.30 at 01:45:32 下午 CST

Two years ago was 星期三 2001.05.30 at 01:45:32 下午 CST



9、比较日期

方法:用equals()、before()、after()方法

<%@ page import=".*"%>

<%@ page import=".*"%>

<%

DateFormat df = new SimpleDateFormat("yyy-MM-dd");

Date d1 = ("2000-01-01");

Date d2 = ("1999-12-31");



String relation = null;

if((d2))

relation = "the same date as";

el if((d2))

relation = "before";

el

relation = "after";

n(d1 +" is " + relation + ' ' + d2);

%>

输出结果为:

Sat Jan 01 00:00:00 CST 2000 is after Fri Dec 31 00:00:00 CST 1999



10、记录一件事所花费的时间

方法:调用两次eMillis()方法,求差值

<%@ page import=".*"%>

<%

long t0,t1;

t0 = tTimeMillis();

n("Cyc starts at " + t0);

int k = 0;

for(int i =0;i<100000;i++){

k += i;

}

t1 = tTimeMillis();

n("
");

n("Cyc ends at " + t1);

n("
");

n("This run too学校广告语 k " + (t1-t0) + "ms.");

%>



输出结果为:

Cyc starts at 1

Cyc ends at 1

This run took 10ms.



其它:如何格式化小数



<%@ page import=".*"%>

<%

DecimalFormat df = new DecimalFormat(",###.00");

double aNumber = 33665448856.6568975;

String result = (aNumber);

n(result);

%>



输出结果为:

33,665,448,856.66



======================



日期比较:



在JAVA中日期的计算与比较可以使用Date和DateFormat来解决,下面是一段示例代码:



import .*;

import .*;



public class Test{



public static void main(String[] args){

try浑身发冷是怎么回事 {

Date date=new Date();

DateFormat df=eTimeInstance();

String now=(date);

n("现在时间:"+now);



n("现在时间是否在16:00之前:"+(("2004-12-24 16:00:00")));

}

catch(ParException e){(sage());

}

}

}


本文发布于:2023-04-25 23:10:57,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/848114.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:日期
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图