假设我的日期是 02-01-2013
它存储在一个变量中,例如:
String strDate = "02-01-2013";
那么我应该如何获得这个日期的日期(即星期二)?
使用java api 中的日历类。
Calendar calendar = new GregorianCalendar(2008, 01, 01); // Note that Month value is 0-based. e.g., 0 for January.
int reslut = calendar.get(Calendar.DAY_OF_WEEK);
switch (result) {
case Calendar.MONDAY:
System.out.println("It's Monday !");
break;
}
您还可以使用SimpleDateFormater和Date来解析日期
Date date = new Date();
SimpleDateFormat date_format = new SimpleDateFormat("yyyy-MM-dd");
try {
date = date_format.parse("2008-01-01");
} catch (ParseException e) {
e.printStackTrace();
}
calendar.setTime(date);
首先拆分字符串
String[] out = strDate.split("-");
s1 = Integer.parseInt(out[0]);
s2 = Integer.parseInt(out[1]) - 1;
yr = out[2];
char a, b, c, d;
a = yr.charAt(0);
b = yr.charAt(1);
c = yr.charAt(2);
d = yr.charAt(3);
s3 = Character.getNumericValue(a)*1000 +
Character.getNumericValue(b)*100 +
Character.getNumericValue(c)*10 +
Character.getNumericValue(d);
然后在那天创建一个日历实例
Calendar cal = Calendar.getInstance();
cal.set(s3, s2, s1);
然后得到一天
cal.get(Calendar.DAY_OF_WEEK);
将此格式用于日期、日期和时间。
日期 dNow = new Date(); SimpleDateFormat ft = new SimpleDateFormat("E yyyy.MM.dd 'at' hh:mm:ss a zzz");
并使用格式方法将对象放在这里。ft.format(dNow)