jsp编程 计算距离2016年元旦还有多少天
答案:1 悬赏:50 手机版
解决时间 2021-04-14 09:18
- 提问者网友:回忆在搜索
- 2021-04-14 00:02
jsp编程 计算距离2016年元旦还有多少天
最佳答案
- 五星知识达人网友:低血压的长颈鹿
- 2021-04-14 00:56
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class MainTest {
public static long dateDiff(Date startTime, String endTime, String format) {
// 按照传入的格式生成一个simpledateformate对象
SimpleDateFormat sd = new SimpleDateFormat(format);
long nd = 1000 * 24 * 60 * 60;// 一天的毫秒数
long diff;
try {
// 获得两个时间的毫秒时间差异
diff = sd.parse(endTime).getTime() - startTime.getTime();
long day = diff / nd;// 计算差多少天
return day;
} catch (ParseException e) {
e.printStackTrace();
}
return -1;
}
public static void main(String[] args) {
System.out.println("时间相差:"
+ dateDiff(new Date(), "2016-1-1", "yyyy-MM-dd") + "天");
}
}
import java.text.SimpleDateFormat;
import java.util.Date;
public class MainTest {
public static long dateDiff(Date startTime, String endTime, String format) {
// 按照传入的格式生成一个simpledateformate对象
SimpleDateFormat sd = new SimpleDateFormat(format);
long nd = 1000 * 24 * 60 * 60;// 一天的毫秒数
long diff;
try {
// 获得两个时间的毫秒时间差异
diff = sd.parse(endTime).getTime() - startTime.getTime();
long day = diff / nd;// 计算差多少天
return day;
} catch (ParseException e) {
e.printStackTrace();
}
return -1;
}
public static void main(String[] args) {
System.out.println("时间相差:"
+ dateDiff(new Date(), "2016-1-1", "yyyy-MM-dd") + "天");
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯