30/09/2018, 18:20

Làm sao để lấy được thời gian nhỏ hơn thời gian hiện tại khoảng 15 phút

Trong java làm sao để lấy được thời gian nhỏ hơn thời gian hiện tại khoảng 15 phút

Mai Anh Dũng viết 20:31 ngày 30/09/2018

Lấy cái này sửa lại cho phù hợp với cái bạn cần nhé

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Calendar cal = Calendar.getInstance();
		System.out.println(cal.getTime().toString());
		cal.add(Calendar.MINUTE, -15);
		System.out.println(cal.getTime().toString());
	}
}
Ideone.com

Ideone.com

Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows to compile and run code online in more than 40 programming languages.

Bài liên quan
0