获取服务器时间

SysData类

package com.xiang.controller;

import java.sql.Date;
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Calendar;

/**
* Created by IntelliJ IDEA.
* User: xiang
* Date: 2021/10/17 16:38
*/
public class SysData {
public static void main(String[] args) {

Calendar calendar = Calendar.getInstance(); // get current instance of the calendar
SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
System.out.println(formatter.format(calendar.getTime()));
System.out.println("/********************************************/");


new SimpleDateFormat("yyyy-MM-dd 'at' HH:mm:ss z");
Date date = new Date(System.currentTimeMillis());
System.out.println(date);

System.out.println("/********************************************/");
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:ss:mm");
String format = dateFormat.format(date);
System.out.println(format);

System.out.println("/********************************************/");
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
String s = df.format(date);
System.out.println(s);
System.out.println("/********************************************/");

LocalDateTime.now(); // get the current date and time
DateTimeFormatter timeFormatter = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm:ss");
System.out.println(timeFormatter);

}
}


控制台运行结果

获取服务器时间_ide


openstack查看虚拟资源 openstack虚拟机监控

整个方案的基本思想是由host负责运行程序,采集数据,额外一台服务器作为server收集每台host的数据进行分析。本文涉及的程序代码均可以从Github上下载,虚拟化使用kvm,使用libvirt作为C API。AD: 本文涉及的程序代码均可以从我的github上下载, 并且持续更新代码虚拟化使用kvm,使用libvirt作为C API基本思想:hos

1、public:public表明该数据成员、成员函数是对所有用户开放的,所有用户都可以直接进行调用 2、private:private表示私有,私有的意思就是除了class自己之外,任何人都不可以直接使用,私有财产神圣不可侵犯嘛,即便是子女,朋友,都不可以使用。 3、protected:protected对于子女、朋友来说,就是public的,可以自由使用,没有任何限