JAVA新手,计算两个时间差
发布网友
发布时间:2022-04-21 05:48
我来回答
共3个回答
热心网友
时间:2022-06-18 07:49
我的思路:在java里面任何完整的日期都可以转化成毫秒,
然后利用毫秒之差就可以算出这2个日期的差额,
但题目里面没有天,只有时分秒,
所以我们可以分别在时分秒加上年月日,使之组成一个完整的日期就可以进行计算了。
以下是我的代码,可以直接拷贝在Eclipse里运行。
p.s:你的代码我看了,没有什么问题,可能是在网站里面运行,你不应该有main函数之类的东西吧,应该用servlet啊。
package com.testtimeinterval;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TestTimeInterval {
public static void main(String[] args) {
try {
// 得到系统输入的内容
System.out.println("请输入入睡时刻,用:隔开:");
InputStreamReader isr_begin = new InputStreamReader(System.in);
BufferedReader br_begin = new BufferedReader(isr_begin);
String beginInputValue = br_begin.readLine();
System.out.println("入睡时间为:" + beginInputValue);
System.out.println("请输入起床时刻,用:隔开:");
InputStreamReader isr_end = new InputStreamReader(System.in);
BufferedReader br_end = new BufferedReader(isr_end);
String wakeupInputValue = br_end.readLine();
System.out.println("起床时间为:" + wakeupInputValue);
// 1.将入睡时间拼接成一个完整的日期
String sleepTimeStr = getCurrDay() + " " + beginInputValue;
// 1.1转换成日期格式
Date sleepTime = convertStrToDate(sleepTimeStr);
// 2.将起床时间拼接成一个完整的日期
String wakeupTimeStr = getCurrDay() + " " + wakeupInputValue;
// 2.1转换成日期格式
Date wakeupTime = convertStrToDate(wakeupTimeStr);
// 计算2个日期之差
long interval = wakeupTime.getTime() - sleepTime.getTime();
System.out.println("相差的毫秒是:" + interval);
// 3.将long转化成时分秒
// 3.1先得到时
int hour = new Long(interval / (1000 * 60 * 60)).intValue();
// 3.2再得到分
int tempLeft_minute = new Long(interval % (1000 * 60 * 60))
.intValue();
// 3.2.1 得到分
int minute = new Long(tempLeft_minute / (1000 * 60)).intValue();
// 4.1 得到秒
int tempLeft_second = new Long(tempLeft_minute % (1000 * 60))
.intValue();
// 4.2.1 得到分
int second = new Long(tempLeft_second / 1000).intValue();
System.out.println("睡觉的时间为" + hour + "时," + minute + "分," + second
+ "秒");
} catch (Exception e) {
e.printStackTrace();
}
}
private static String getCurrDay() throws Exception {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
return sdf.format(new Date());
}
private static Date convertStrToDate(String dateStr) throws Exception {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sdf.parse(dateStr);
}
}
热心网友
时间:2022-06-18 07:49
你不需要定义2个Scanner。用同一个它在换行输入时候也只会按你的命令输入int.另外你需要在main方法结尾的大括号前加上Scanner 的关闭。例如定义Scanner sc的话。结尾要加上sc.close();
热心网友
时间:2022-06-18 07:50
public static long compute(Date d1,Date d2){
return d1.getTime() - d2.getTime();
}
public static void main(String []args){
Scanner sc = new Scanner(System.in);
String d1,d2;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println("please enter a begin time,like this:1987-01-01 22:01:01");
d1 = sc.nextLine();
// 这里做必要的非空或是日期解析判断
System.out.println("please enter a awake time,like this:1987-01-01 08:01:01");
d2 = sc.nextLine();
// 这里做必要的非空或是日期解析判断
try{
System.out.println("the result:" + compute(sdf.parse(d1),sdf.parse(d1)));
}catch(Exception e){
// 可以输出异常信息,可能空指针或是日期解析异常
}
}