gpt4 book ai didi

Java 如何获得 HH :mm:ss from Date

转载 作者:行者123 更新时间:2023-11-30 07:05:48 24 4
gpt4 key购买 nike

对于我的第一个 Java 应用程序,我正在制作一个秒表。秒表以小时、分钟和秒的形式显示过去的时间。像这样 00:00:00。

我希望在一定时间(用户定义)过去后显示一个警报(警报框等)。

下面是生成秒表显示的代码(忽略分秒,我们不会为闹钟担心):

    swChronometer = new Timer(10, new ActionListener() {
public void actionPerformed(ActionEvent e) {
int decisec = (int)(System.currentTimeMillis() - swWatchStart) / 10; // 10 x millisecond
int seconds = decisec / 100;
int days = seconds / 86400; // 86400 seconds in a day
int hours = (seconds / 3600) - (days * 24); // 3600 seconds in a hour
int min = (seconds / 60) - (days * 1440) - (hours * 60); // 60 seconds in a min
int sec = seconds % 60;
int decis = decisec % 100;

//------------------------------------------------------- format the ints
DecimalFormat formatter = new DecimalFormat("00");
String hoursFormatted = formatter.format(hours);
String minFormatted = formatter.format(min);
String secFormatted = formatter.format(sec);
String decisFormatted = formatter.format(decis);

//------------------------------------------------------- update display
String s = new String(""+hoursFormatted+":"+minFormatted+":"+secFormatted+"");
String sDs = new String(decisFormatted);
swDisplayTimeLabel.setText(s);
swDisplayDeciseconds.setText(sDs);
}
});

如您所见,Timer 整数最终会转换为字符串,然后显示。

After 和 Every 有单选按钮 - 所以在 n 时间后或每 n 时间后发出警报。

我有一个 JSpinner,因此用户可以定义 n 时间,其格式设置为仅显示 00:00:00:

    // ----------------------------------
// set spinner format
// ----------------------------------
// inital date at 12pm 00:00:00
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 24); // 24 == 12 PM == 00:00:00
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);

swSpinnerTime.setValue(calendar.getTime());

// format field
JSpinner.DateEditor editor = new JSpinner.DateEditor(swSpinnerTime, "HH : mm : ss");
DateFormatter formatter = (DateFormatter)editor.getTextField().getFormatter();
formatter.setAllowsInvalid(false); // sets it so user cant edit colon
formatter.setOverwriteMode(true);

swSpinnerTime.setEditor(editor);

还有一个组合框,因此用户可以选择警报的类型。

每当用户对这些输入中的任何一个进行操作时,都会调用我的函数来处理它:

private void swAlarmSettings() {
//------------------------------------------------------- which radio is selected
String swRadioText = "";

if(swRadioAfter.isSelected()) {
swRadioText = swRadioAfter.getText();
}

if(swRadioEvery.isSelected()) {
swRadioText = swRadioEvery.getText();
}

// debug
System.out.println("Radio Selected: " +swRadioText);

//------------------------------------------------------- which time is selected
Date swSpinnerTimeValue;
swSpinnerTimeValue = (Date)swSpinnerTime.getValue();

// debug
System.out.println("swSpinnerTimeValue: " +swSpinnerTimeValue);

//------------------------------------------------------- which alarm is selected
String swDropDownSelected = (String)swDropDown.getSelectedItem();

// debug
System.out.println("swDropDownSelected: " +swDropDownSelected);
}

然而,无论何时调用此函数,它都会打印出日期:

   swSpinnerTimeValue: Tue Oct 14 00:00:00 BST 2014

所以这就是我坚持如何进行的地方。当我已经在 J​​Spinner 中格式化它时,我没想到会显示整个日期(即使它是错误的(今天是 10 月 13 日,而不是 14 日))。

所以我假设我需要以某种方式解析这个值,去掉我不需要的数据,所以我只剩下 HH:mm:ss 然后将它转换为字符串,这样我就可以比较它到我的秒表显示 (String swDisplayTimeLabel),然后在它们匹配时触发警报。

我希望我已经清楚地表达了我的疑问并提供了足够的信息。感谢您的帮助。

我在 Netbeans 中工作并使用 Swing 设计部分来创建我的应用程序。

最佳答案

Java Date是一个瞬间,不会保留您预期的输出格式。为此,您需要使用 DateFormat。例如,

System.out.println("swSpinnerTimeValue: " + new SimpleDateFormat("HH:mm:ss")
.format(swSpinnerTimeValue));

关于Java 如何获得 HH :mm:ss from Date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26341679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com