本文介绍了如何从android的指定日期获取一天的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Suppose my date is 02-01-2013

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

and it is stored in a variable like:

String strDate = "02-01-2013";

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

then how should I get the day of this date (i.e TUESDAY)?

推荐答案

使用 class from java api。

Use Calendar class from 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;
}

您还可以使用和解析日期

You could also use SimpleDateFormater and Date for parsing dates

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);

这篇关于如何从android的指定日期获取一天的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 00:27