package project;
import java.util.Calendar;
import java.util.Date;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author admin
*/
public class TestDate {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Date now = Calendar.getInstance().getTime();
Date yesterday = new Date (111,8,13);
System.out.println("now : " + now);
System.out.println("yesterday : " + yesterday);
}
}
No comments:
Post a Comment