2011年12月10日 星期六

簡易java Date

package Ch21;



import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Vector;

public class Test2 {
public static void main(String args[]) {
int[] row= new int[50];
for(int s=0; s<row.length;s++){
row[s]=s+1;

//印出目前日期
Date date = new Date();
System.out.println(date);
//Sat Dec 10 15:26:59 CST 2011
//設定日期格式
SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd");
Calendar c1 = Calendar.getInstance();
System.out.println(c1);
//java.util.GregorianCalendar[time=1323502019049,areFieldsSet=true,areAll

//設定日期遞增
c1.setTime(date);
c1.add(Calendar.DATE, row[s]);
df.format(c1.getTime());
System.out.println(df.format(c1.getTime()));
//2011/12/11
//2011/12/12
}
}
}

沒有留言: