我需要一种方法来获取动态日期和时间,以便通过Java Netbeans中dd/MM/yyyy
格式的标签在JFrame
上显示它。我用的是一个,但比我的国家时间早2个小时。下面是我使用的方法:
public void currentDate(){
Thread clock = new Thread(){
public void run(){
for(;;){
//empty for will run forever
//System.out.print("p");
Calendar cal = new GregorianCalendar();
int month = cal.get(Calendar.MONTH);
int year = cal.get(Calendar.YEAR);
int day = cal.get(Calendar.DAY_OF_MONTH);
int second = cal.get(Calendar.SECOND);
int minute = cal.get(Calendar.MINUTE);
int hour = cal.get(Calendar.HOUR);
lab_date.setText(day+"/"+(((month+1)<10)?"0"+(month+1):(month+1))+"/"+year+" "
+ hour+":"+minute+":"+second
);
try {
sleep(1000);//1000 miliseconds it will sleep which means one second sleep
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e);
}
}
}
};
clock.start();
}
java.time
您正在使用旧的类(Java .util. date/. calendar),这些类现在在Java 8和更高版本中被新Java所取代。时间框架。
时区是一个调整到某人的时钟时间,同时遵循一组规则,从utc偏移,夏令时,和其他异常。使用合适的时区名称,不要使用"EST"或"IST"等3-4个字母的代码。
Locale根据风格的文化规范和特定的人类语言(法语、德语等)确定日期-时间值的String表示形式的格式。我建议你让java。时间以本地化的方式完成格式化工作,而不是控制格式。enum FormatStyle
,选择较短或较长的格式。
Instant
表示UTC时间轴上的时刻。然后我们调整到一个时区。最后,根据特定Locale的格式创建一个字符串。
Instant instant = Instant.now();
ZoneId zoneId = ZoneId.of( "America/Montreal" );
ZonedDateTime zdt = ZonedDateTime.ofInstant( instant , zoneId );
Locale locale = Locale.CANADA_FRENCH;
DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime( FormatStyle.FULL ).withLocale( locale );
String output = zdt.format( formatter );
转储到控制台
System.out.println( "instant: " + instant );
System.out.println( "zdt: " + zdt );
System.out.println( "output: " + output );
运行时。
instant: 2015-09-26T04:59:34.651Z
zdt: 2015-09-26T00:59:34.651-04:00[America/Montreal]
output: samedi 26 septembre 2015 0 h 59 EDT
获取巴基斯坦国家日期/时间的示例说明:
// create a simple date format instance
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd 'T' HH:mm:ss");
// get the time zone of Paskistan country
TimeZone pakistan = TimeZone.getTimeZone("Asia/Karachi");
// set the time zone to the date format
sdf.setTimeZone(pakistan);
// print the date to the console
System.err.println(sdf.format(new Date()));
获取您所在地区的日期和日期很简单。
Date date = new Date();
System.out.println(date);
输出:星期二五月15 00:36:48 PKT 2018