2013年1月13日

Android String to Date And Date to String

String to Date


//欲轉換的日期字串
String dateString = "2013-01-12 23:19:54";
//設定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//進行轉換
Date date = sdf.parse(dateString);
System.out.println(date);


Date to String


Date dt=new Date();
sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time=sdf.format(dt);

取得星期幾


SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date dt =sdf.parse("2012/12/31 11:49:00");
Calendar calendar = Calendar.getInstance();//取得目前時間
calendar.setTime(dt);//或是設定指定時間
int day=calendar.DAY_OF_WEEK;
//1~7代表星期日至星期六

沒有留言:

張貼留言