welcom

Selamat datang di blog sederhana kami..

Thursday, October 20, 2011

TestDate

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);
}

}

0 komentar:

Post a Comment