简单的java程序,支持2种时间格式输入并计算时差
我想知道如何编写一个简单的程序 用户可以给出 2 个输入时间(hh:mm)格式 --- 并接收经过的时间作为输出。
该程序将运行并使用户能够写入时间输入。 也许是一个通过命令提示符运行的简单程序。
例如,当程序运行时:
请写/输入开始时间!
(例如:用户将以“hh:mm”格式写入,例如;19.14)写入/输入结束时间: (用户将以“hh:mm”格式写入,如 23.40)
输出将类似于:“您已过去 hh(小时)”
我一直在谷歌上搜索时间格式的事情, 甚至使用 simpledateformat, 但当我尝试将输入实现到类或其他任何内容时,我有点混淆了。
有人可以帮我解决这个问题吗?
提前致谢。
I'd like to know how to make a simple program
where user can gave 2 input time(hh:mm) format ---and receive the elapsing time as the output.
the program will run and enable user to write time-input..
maybe a simple program that run through command prompt.
Example, when the program runs:
Please Write/input the starting time!
(eg: user will write in "hh:mm" format like; 19.14)Write/input the end time:
(user will write in "hh:mm" format like; 23.40)The output will be like: "You have elapsed hh (hour)"
I've been google-about the time format things,
or even used simpledateformat,
but I just kind of mixed up when trying to implement the input into the classes orwhatsoever.
is there anybody can help me to solve this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须使用 Joda-Time API。
You have to use Joda-Time API.
我认为您对 Date 构造函数的调用没有按照您的想法进行。
日期的三个参数构造函数是:
Date(intyear,intmonth,intdate)
已弃用。从 JDK 版本 1.1 开始,被 Calendar.set(year + 1900,month,date) 或 GregorianCalendar(year + 1900,month,date) 取代。
试试这个:
日期(int 年,int 月,int 日期,int 小时,int 分,int 秒)
已弃用。从 JDK 版本 1.1 开始,替换为 Calendar.set(year + 1900, Month, date, hrs, min, sec) 或 GregorianCalendar(year + 1900, Month, date, hrs, min, sec)
如果您只关心经过的时间,然后为两者插入相同的日期,然后减去。
试试这个:
Date d1 = new Date( 15, 10, 44);
System.out.println(d1.toString());
看看发布的日期。
导入 java.util.Date;
公共课 SomeOnesHomeWork {
}
I don't think your call to the Date constructor is doing what you think it is.
The three arg constructor for date is:
Date(int year, int month, int date)
Deprecated. As of JDK version 1.1, replaced by Calendar.set(year + 1900, month, date) or GregorianCalendar(year + 1900, month, date).
Try this one:
Date(int year, int month, int date, int hrs, int min, int sec)
Deprecated. As of JDK version 1.1, replaced by Calendar.set(year + 1900, month, date, hrs, min, sec) or GregorianCalendar(year + 1900, month, date, hrs, min, sec)
If all you care about is the time elapsed, then plugin the same date for both, then subtract.
try this:
Date d1 = new Date( 15, 10, 44);
System.out.println(d1.toString());
see what date is puts out.
import java.util.Date;
public class SomeOnesHomeWork {
}
我猜你正在寻找这个..
I guess You are looking for this..