Java获取服务器时间的方法有很多种,下面介绍两种常用的方法。
long currentTimeMillis = System.currentTimeMillis();
Date date = new Date(currentTimeMillis);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(date);
System.out.println("服务器当前时间为:" + formattedDate);
使用Java8引入的java.time包,通过获取服务器本地时间的LocalDateTime对象,再按照日期时间格式化输出。示例代码如下:
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDate = now.format(formatter);
System.out.println("服务器当前时间为:" + formattedDate);
需要注意的是,如果服务器系统时间不准确,以上两种方法获取到的时间也不准确。因此,在生产环境中,应该尽量保证服务器系统时间的准确性。