Tóm tắt nội dung: Giới thiệu cách lấy thời gian hệ thống trong Java.
Nội dung:
Cách lấy milisecond:
Code:
public static void main(String[] args) {
long start = System.currentTimeMillis();
//Do something...
long end = System.currentTimeMillis();
System.out.println(start - end);
}
Cách lấy nanosecond:
Code:
public static void main(String[] args) {
long start = System.nanoTime();
//Do something...
long end = System.nanoTime();
System.out.println(start - end);
}
Cách hiển thị ngày giờ trong hệ thống:
Code:
public static void main(String[] args) {
DateFormat dateFormat = new
SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");//định dạng ngày
giờ
Date
date = new Date();// lấy
ngày giờ hệ thống
String
string = dateFormat.format(date);
System.out.println(string);
}
Các bạn xem thêm
video để hiểu rõ hơn về thời gian hệ thống.
Nếu bạn có câu hỏi vui lòng để lại
comment hoặc gởi câu hỏi theo địa chỉ: studyandsharevn@gmail.com.
Không có nhận xét nào:
Đăng nhận xét