如何在 java 中使字符串了解当前本地时间



这是我的代码,我正在尝试我的'calculateButton'变量来理解当前的本地时间,以便它可以在数学方程中使用它。感谢您的观看。当前时间是指当前计算机上显示的时间或我所在的时区。

private void bednowButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
//variable declaration
String calculateButton, outputTime;
double outputtimeConstant;
calculateButton= "";
//math
outputtimeConstant = +104;
outputTime = calculateButton + outputtimeConstant;
//output
bednowOutput.setText(outputTime) ;
} 

要获取当前日期和时间,只需使用 LocalDateTime 或 ZonedDateTime 类的静态方法 now(((您在这里提到了时区,所以我也指定了此实现(。对于之后对这些对象进行一些数学运算,只需使用它们的实例方法,例如 plusDays、plusHours...等等。我建议阅读这些类的文档,它们非常有用。

如果你想要一个字符串表示,只需调用 toString(( 方法。

相关内容

  • 没有找到相关文章

最新更新