4

假设我的日期是 02-01-2013

它存储在一个变量中,例如:

String strDate = "02-01-2013";

那么我应该如何获得这个日期的日期(即星期二)?

4

4 回答 4

9

使用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;
}

您还可以使用SimpleDateFormaterDate来解析日期

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);
于 2013-01-02T08:33:20.867 回答
3

首先拆分字符串

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);
于 2013-01-02T08:40:22.913 回答
1

将此格式用于日期、日期和时间。

日期 dNow = new Date(); SimpleDateFormat ft = new SimpleDateFormat("E yyyy.MM.dd 'at' hh:mm:ss a zzz");

并使用格式方法将对象放在这里。ft.format(dNow)

于 2013-01-02T09:10:37.970 回答
0

我认为基于Android文档建议使用日历,

You need to be careful because the first day 1 is Sunday and the first month January Also check that you can get DAY_OF_WEEK, DAY_OF_MONTH etc

于 2015-05-19T17:33:08.837 回答