Android-如何擷取系統目前日期時間的方法(1): Date myDate = new Date();
Android-如何擷取系統目前日期時間的方法(1): Date myDate = new Date();
注意:整個事件程式碼都必須放在
onCreate()
{
}
下面
……………………..
範例:
import android.view.*;
import android.widget.*;
import java.util.Calendar;
import java.util.Date;
// button1
事件處理程序
public void button1_Click(View view) {
//## date ##############
Date myDate = new Date();
int thisYear = myDate.getYear() + 1900;
int thisMonth = myDate.getMonth() + 1;
int thisDate = myDate.getDate();
int thisHour = myDate.getHours();
int thisMin = myDate.getMinutes();
int thisSec = myDate.getSeconds();
} //end of button1_Click()