内容导航:
1、
first dates
2、
Java中使用什么方法可以把两个String类型的日期相减求出时间差啊
1、
first dates
英:
美:
常用释义:
初次约会:两个人在约会过程中的首次见面
第一次约会
1、January 31 is due to be the years biggest night for
first dates
, according to a survey.───一项调查表明,1月31日晚是今年最适合初次约会之夜。
2、First dates, especially blind Internet dates, are great for tips.───第一次约会,尤其是第一次网上约会,付小费是至关重要的。
3、Youve gone on too many
first dates
.───你已经经历了太多的第一次约会。
4、I was thinking about some of the common errors made on
first dates
.───我曾想过一些首次约会时会犯的常见错误。
5、Of the 18 million
first dates
"enjoyed" by Britons every year, as many as 6 million never progress to a second date.───在英国人每年很“享受”的1800万个初次约会中,有600万个没有下文。
6、First dates are awkward, first kisses are heavenly, first love is irreplaceable, and first heartbreaks are unforgettable.───第一次约会尴尬不已,第一次接吻天堂般梦幻,第一次恋爱无法取代,第一次心碎无法忘怀。
7、For both men and women, the number of hookups was nearly double the number of
first dates
.───在男性群体和女性群体中,鬼混的数量都将近是初次约会数目的两倍。
8、The first rule of real estate is just as applicable to
first dates
.───房地产的金科玉律对你的初次约会来说同样适用。
9、First dates are always nerve-wracking -- thats a given.───第一次约会总是很紧张的,这是肯定的。
1、scab dates───赤枣
2、pitted dates───麻枣
3、blind dates───n.男女间的初次会面,相亲( blind date的名词复数 );在盲目约会中结识的对象;初次见面;男女初次约会
4、zodiac dates───十二宫日期
5、pisces dates───双鱼座日期
6、horoscope dates───星座日期
7、dates───n.日期;约会;枣子(date的复数);v.定日期;约会(date的第三人称单数)
8、red dates───红枣
9、dates between───日期介于
2、
Java中使用什么方法可以把两个String类型的日期相减求出时间差啊
你好,原理是:先求出指定定日期的毫秒,然后按照日期的规则运算。
实测过代码如下:
public static long fromDateStringToLong(String inVal) { // 此方法计算时间毫秒
Date date = null; // 定义时间类型
SimpleDateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
try {
date = inputFormat.parse(inVal); // 将字符型转换成日期型
} catch (Exception e) {
e.printStackTrace();
}
return date.getTime(); // 返回毫秒数
}
public static void main(String【】 args) {
long startT = TestDateMinus.fromDateStringToLong("2005-03-03 14:51:23"); // 定义测试时间1
long endT = TestDateMinus.fromDateStringToLong("2005-03-03 13:50:23"); // 定义测试时间2
long ss = (startT - endT) / 1000; // 共计秒数
int MM = (int) ss / 60; // 共计分钟数
int hh = (int) ss / 3600; // 共计小时数
int dd = (int) hh / 24; // 共计天数
System.out.println("共" + dd + "天,时间是:" + hh + " 小时 " + MM + " 分钟"
+ ss + " 秒 共计:" + ss * 1000 + " 毫秒");
}