date怎么写

1. 英语日期怎么写

日期月份等缩写~

date怎么写

january (jan.) 一月;

february (feb.) 二月;

march (mar.) 三月;

april (apr.) 四月;

may (may.)五月;

june(jun.)六月;

july(jul.)七月;

august(aug.)八月;

september(sept.)九月;

october(oct.)十月;

november(nov.)十一月;

december(dec.)十二月 .

星期一: mon.=monday

星期二: tues.=tuesday

星期三: wed.=wednesday

星期四: thur.=thurday

星期五: fri.=friday

星期六: sat.=saturday

星期天: sun.=sunday

英语日期中的大写、缩写

1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th ;

11th 12th 13th 14th 15th 16th 17th 18th 19th 20th ;21st 22nd 23rd 24th 25th 26th 27th 28th 29th 30th 31st

2. 日记本上的 Date No怎么填

Date No是指日期,可以直接填数字形式的日期,比如2018.12.05;也可以写12/5,或者英文形式的表述5th/Dec都可以。

Date英[deɪt],美[det],此处做名词,是日期的意思,做名词时还可以表示约会; 日期,日子; 时代,年代,同时也可以做动词表示过时; 使…显老; 显示出…时代(或年龄); 鉴定…的年代; 或与人约会,相约。

例句1,What's the date today? 今天是几号?

例句2,I've got a date with Lucy tomorrow night. 明天晚上我与露西有个约会。

No.是序数,是英文number的缩写,表示“第几”的意思,也有号码,编号的意思。

例句,If you appealed against the decision, please give the date number and outcome of the appeal. 如果您对结果上诉,请提供上诉的日期编号和结果。

扩展资料

日期在英式英语中的写法:英式英语中“日”在“月份”的前面,有需要的话可以加上序数词的结尾。月份前的介词基本上可以省略,“年”的前面可以加个逗号,不过这个逗号在英式英语中已经不常见了。比如:5(th) (of) October(,) 2016。

日期在美式英语中的写法:美式英语中,“月份”在“日”的前面,“日”的前面还可以加上定冠词“the",“年”的前面放逗号是非常常见的。比如:October (the) 5(th), 2016。

使用数字:你还可以直接用数字来写出具体日期:25/1/17 or 1-25-17注意25/1/17是英式表达,1-25-17是美式表达。为了避免混淆,你可以“拼”出月份,或者使用缩写。英式英语中,月份缩写的后面是没有句点的(Apr),但是美式英语中是有句点的(Apr.)。

月份缩写:一月:January 缩写Jan,二月:February缩写 Feb,三月:March 缩写Mar,四月:April 缩写Apr,五月:May 缩写May,六月:June 缩写Jun,七月:July 缩写Jul,八月:August 缩写Aug。

九月:September 缩写Sept,十月:October 缩写Oct,十一月:November 缩写Nov,十二月:December 缩写Dec。

3. java中sql的date怎么写

java.sql.Date是针对SQL语句使用的,它只包含日期而没有时间部分

java.util.Date是在除了SQL语句的情况下面使用的。

它们都有getTime方法返回毫秒数,自然就可以直接构建。 java.util.Date 是 java.sql.Date 的父类,前者是常用的表示时间的类,我们通常格式化或者得到当前时间都是用他,后者之后在读写数据库的时候用他,因为PreparedStament的setDate()的第2参数和ResultSet的getDate()方法的第2个参数都是java.sql.Date。

java.sql.Date转为java.util.Date

java.sql.Date date=new java.sql.Date();

java.util.Date d=new java.util.Date (date.getTime());

java.util.Date转为java.sql.Date

java.util.Date utilDate=new Date();

java.sql.Date sqlDate=new java.sql.Date(utilDate.getTime());

java.util.Date utilDate=new Date();

java.sql.Date sqlDate=new java.sql.Date(utilDate.getTime());

java.sql.Time sTime=new java.sql.Time(utilDate.getTime());

java.sql.Timestamp stp=new java.sql.Timestamp(utilDate.getTime());

这里所有时间日期都可以被SimpleDateFormat格式化format()

SimpleDateFormat f=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

f.format(stp);

f.format(sTime);

f.format(sqlDate);

f.format(utilDate)

java.sql.Date sqlDate=java.sql.Date.valueOf(" 2005-12-12");

utilDate=new java.util.Date(sqlDate.getTime());

另类取得年月日的方法:

import java.text.SimpleDateFormat;

import java.util.*;

java.util.Date date = new java.util.Date();

//如果希望得到YYYYMMDD的格式SimpleDateFormat

sy1=new SimpleDateFormat("yyyyMMDD");

String dateFormat=sy1.format(date);

//如果希望分开得到年,月,日SimpleDateFormat

sy=new SimpleDateFormat("yyyy");

SimpleDateFormat sm=new SimpleDateFormat("MM");

SimpleDateFormat sd=new SimpleDateFormat("dd");

String syear=sy.format(date);

String smon=sm.format(date);

String sday=sd.format(date)

4. date表示什么意思

1、释义:日期;〈非正式〉约会(n)

确定…的年代;使过时,使显得过时;约会(v)

2、音标:英 [deɪt] 美 [deɪt]

3、常见短语:

to date 迄今,至今

until now 迄今,至今

their finest work to date . 他们迄今为止最好的作品

4、例句:

My date isn't going to show, it seems.

翻译:看起来我约的人不会来了。

The church is the largest of its date.

翻译:该教堂是当时最大的。

The controversy dates back to 1986.

翻译:论战可追溯到1986年。

They date the paintings to 1460—70.

他们将这些画的年代确定在1460—1470年之间。