Android Calendar的运用
- import java.text.DateFormat;
- import java.text.ParsePosition;
- import java.text.SimpleDateFormat;
- import java.util.Calendar;
- import java.util.Date;
- import java.util.GregorianCalendar;
- public class CalendarUtil {
- private int weeks = 0;// 用来全局控制 上一周,本周,下一周的周数变化
- private int MaxDate; // 一月最大天数
- private int MaxYear; // 一年最大天数
- public static void main(String[] args) {
- CalendarUtil tt = new CalendarUtil();
- System.out.println("获取当天日期:" + tt.getNowTime("yyyy-MM-dd"));
- System.out.println("获取本周一日期:" + tt.getMondayOFWeek());
- System.out.println("获取本周日的日期~:" + tt.getCurrentWeekday());
- System.out.println("获取上周一日期:" + tt.getPreviousWeekday());
- System.out.println("获取上周日日期:" + tt.getPreviousWeekSunday());
- System.out.println("获取下周一日期:" + tt.getNextMonday());
- System.out.println("获取下周日日期:" + tt.getNextSunday());
- System.out.println("获得相应周的周六的日期:" + tt.getNowTime("yyyy-MM-dd"));
- System.out.println("获取本月第一天日期:" + tt.getFirstDayOfMonth());
- System.out.println("获取本月最后一天日期:" + tt.getDefaultDay());
- System.out.println("获取上月第一天日期:" + tt.getPreviousMonthFirst());
- System.out.println("获取上月最后一天的日期:" + tt.getPreviousMonthEnd());
- System.out.println("获取下月第一天日期:" + tt.getNextMonthFirst());
- System.out.println("获取下月最后一天日期:" + tt.getNextMonthEnd());
- System.out.println("获取本年的第一天日期:" + tt.getCurrentYearFirst());
- System.out.println("获取本年最后一天日期:" + tt.getCurrentYearEnd());
- System.out.println("获取去年的第一天日期:" + tt.getPreviousYearFirst());
- System.out.println("获取去年的最后一天日期:" + tt.getPreviousYearEnd());
- System.out.println("获取明年第一天日期:" + tt.getNextYearFirst());
- System.out.println("获取明年最后一天日期:" + tt.getNextYearEnd());
- System.out.println("获取本季度第一天:" + tt.getThisSeasonFirstTime(11));
- System.out.println("获取本季度最后一天:" + tt.getThisSeasonFinallyTime(11));
- System.out.println("获取两个日期之间间隔天数2008-12-1~2008-9.29:"
- + CalendarUtil.getTwoDay("2008-12-1", "2008-9-29"));
- System.out.println("获取当前月的第几周:" + tt.getWeekOfMonth());
- System.out.println("获取当前年份:" + tt.getYear());
- System.out.println("获取当前月份:" + tt.getMonth());
- System.out.println("获取今天在本年的第几天:" + tt.getDayOfYear());
- System.out.println("获得今天在本月的第几天(获得当前日):" + tt.getDayOfMonth());
- System.out.println("获得今天在本周的第几天:" + tt.getDayOfWeek());
- System.out.println("获得半年后的日期:"
- + tt.convertDateToString(tt.getTimeYearNext()));
- }
- public static int getYear() {
- return Calendar.getInstance().get(Calendar.YEAR);
- }
- public static int getMonth() {
- return Calendar.getInstance().get(Calendar.MONTH) + 1;
- }
- public static int getDayOfYear() {
- return Calendar.getInstance().get(Calendar.DAY_OF_YEAR);
- }
- public static int getDayOfMonth() {
- return Calendar.getInstance().get(Calendar.DAY_OF_MONTH);
- }
- public static int getDayOfWeek() {
- return Calendar.getInstance().get(Calendar.DAY_OF_WEEK);
- }
- public static int getWeekOfMonth() {
- return Calendar.getInstance().get(Calendar.DAY_OF_WEEK_IN_MONTH);
- }
- public static Date getTimeYearNext() {
- Calendar.getInstance().add(Calendar.DAY_OF_YEAR, 183);
- return Calendar.getInstance().getTime();
- }
- public static String convertDateToString(Date dateTime) {
- SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
- return df.format(dateTime);
- }
- public static String getTwoDay(String sj1, String sj2) {
- SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");
- long day = 0;
- try {
- java.util.Date date = myFormatter.parse(sj1);
- java.util.Date mydate = myFormatter.parse(sj2);
- day = (date.getTime() - mydate.getTime()) / (24 * 60 * 60 * 1000);
- } catch (Exception e) {
- return "";
- }
- return day + "";
- }
- public static String getWeek(String sdate) {
- // 再转换为时间
- Date date = CalendarUtil.strToDate(sdate);
- Calendar c = Calendar.getInstance();
- c.setTime(date);
- // int hour=c.get(Calendar.DAY_OF_WEEK);
- // hour中存的就是星期几了,其范围 1~7
- // 1=星期日 7=星期六,其他类推
- return new SimpleDateFormat("EEEE").format(c.getTime());
- }
- public static Date strToDate(String strDate) {
- SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
- ParsePosition pos = new ParsePosition(0);
- Date strtodate = formatter.parse(strDate, pos);
- return strtodate;
- }
- public static long getDays(String date1, String date2) {
- if (date1 == null || date1.equals(""))
- return 0;
- if (date2 == null || date2.equals(""))
- return 0;
- // 转换为标准时间
- SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");
- java.util.Date date = null;
- java.util.Date mydate = null;
- try {
- date = myFormatter.parse(date1);
- mydate = myFormatter.parse(date2);
- } catch (Exception e) {
- }
- long day = (date.getTime() - mydate.getTime()) / (24 * 60 * 60 * 1000);
- return day;
- }
- public String getDefaultDay() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.set(Calendar.DATE, 1);// 设为当前月的1号
- lastDate.add(Calendar.MONTH, 1);// 加一个月,变为下月的1号
- lastDate.add(Calendar.DATE, -1);// 减去一天,变为当月最后一天
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getPreviousMonthFirst() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.set(Calendar.DATE, 1);// 设为当前月的1号
- lastDate.add(Calendar.MONTH, -1);// 减一个月,变为下月的1号
- // lastDate.add(Calendar.DATE,-1);//减去一天,变为当月最后一天
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getFirstDayOfMonth() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.set(Calendar.DATE, 1);// 设为当前月的1号
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getCurrentWeekday() {
- weeks = 0;
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + 6);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getNowTime(String dateformat) {
- Date now = new Date();
- SimpleDateFormat dateFormat = new SimpleDateFormat(dateformat);// 可以方便地修改日期格式
- String hehe = dateFormat.format(now);
- return hehe;
- }
- private int getMondayPlus() {
- Calendar cd = Calendar.getInstance();
- // 获得今天是一周的第几天,星期日是第一天,星期二是第二天......
- int dayOfWeek = cd.get(Calendar.DAY_OF_WEEK) - 1; // 因为按中国礼拜一作为第一天所以这里减1
- if (dayOfWeek == 1) {
- return 0;
- } else {
- return 1 - dayOfWeek;
- }
- }
- public String getMondayOFWeek() {
- weeks = 0;
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getSaturday() {
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + 7 * weeks + 6);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getPreviousWeekSunday() {
- weeks = 0;
- weeks--;
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + weeks);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getPreviousWeekday() {
- weeks--;
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + 7 * weeks);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getNextMonday() {
- weeks++;
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + 7);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- public String getNextSunday() {
- int mondayPlus = this.getMondayPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, mondayPlus + 7 + 6);
- Date monday = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preMonday = df.format(monday);
- return preMonday;
- }
- private int getMonthPlus() {
- Calendar cd = Calendar.getInstance();
- int monthOfNumber = cd.get(Calendar.DAY_OF_MONTH);
- cd.set(Calendar.DATE, 1);// 把日期设置为当月第一天
- cd.roll(Calendar.DATE, -1);// 日期回滚一天,也就是最后一天
- MaxDate = cd.get(Calendar.DATE);
- if (monthOfNumber == 1) {
- return -MaxDate;
- } else {
- return 1 - monthOfNumber;
- }
- }
- public String getPreviousMonthEnd() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.add(Calendar.MONTH, -1);// 减一个月
- lastDate.set(Calendar.DATE, 1);// 把日期设置为当月第一天
- lastDate.roll(Calendar.DATE, -1);// 日期回滚一天,也就是本月最后一天
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getNextMonthFirst() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.add(Calendar.MONTH, 1);// 减一个月
- lastDate.set(Calendar.DATE, 1);// 把日期设置为当月第一天
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getNextMonthEnd() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.add(Calendar.MONTH, 1);// 加一个月
- lastDate.set(Calendar.DATE, 1);// 把日期设置为当月第一天
- lastDate.roll(Calendar.DATE, -1);// 日期回滚一天,也就是本月最后一天
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getNextYearEnd() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.add(Calendar.YEAR, 1);// 加一个年
- lastDate.set(Calendar.DAY_OF_YEAR, 1);
- lastDate.roll(Calendar.DAY_OF_YEAR, -1);
- str = sdf.format(lastDate.getTime());
- return str;
- }
- public String getNextYearFirst() {
- String str = "";
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
- Calendar lastDate = Calendar.getInstance();
- lastDate.add(Calendar.YEAR, 1);// 加一个年
- lastDate.set(Calendar.DAY_OF_YEAR, 1);
- str = sdf.format(lastDate.getTime());
- return str;
- }
- private int getMaxYear() {
- Calendar cd = Calendar.getInstance();
- cd.set(Calendar.DAY_OF_YEAR, 1);// 把日期设为当年第一天
- cd.roll(Calendar.DAY_OF_YEAR, -1);// 把日期回滚一天。
- int MaxYear = cd.get(Calendar.DAY_OF_YEAR);
- return MaxYear;
- }
- private int getYearPlus() {
- Calendar cd = Calendar.getInstance();
- int yearOfNumber = cd.get(Calendar.DAY_OF_YEAR);// 获得当天是一年中的第几天
- cd.set(Calendar.DAY_OF_YEAR, 1);// 把日期设为当年第一天
- cd.roll(Calendar.DAY_OF_YEAR, -1);// 把日期回滚一天。
- int MaxYear = cd.get(Calendar.DAY_OF_YEAR);
- if (yearOfNumber == 1) {
- return -MaxYear;
- } else {
- return 1 - yearOfNumber;
- }
- }
- public String getCurrentYearFirst() {
- int yearPlus = this.getYearPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, yearPlus);
- Date yearDay = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preYearDay = df.format(yearDay);
- return preYearDay;
- }
- // 获得本年最后一天的日期 *
- public String getCurrentYearEnd() {
- Date date = new Date();
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy");// 可以方便地修改日期格式
- String years = dateFormat.format(date);
- return years + "-12-31";
- }
- // 获得上年第一天的日期 *
- public String getPreviousYearFirst() {
- Date date = new Date();
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy");// 可以方便地修改日期格式
- String years = dateFormat.format(date);
- int years_value = Integer.parseInt(years);
- years_value--;
- return years_value + "-1-1";
- }
- // 获得上年最后一天的日期
- public String getPreviousYearEnd() {
- weeks--;
- int yearPlus = this.getYearPlus();
- GregorianCalendar currentDate = new GregorianCalendar();
- currentDate.add(GregorianCalendar.DATE, yearPlus + MaxYear * weeks
- + (MaxYear - 1));
- Date yearDay = currentDate.getTime();
- DateFormat df = DateFormat.getDateInstance();
- String preYearDay = df.format(yearDay);
- return preYearDay;
- }
- public String getThisSeasonFirstTime(int month) {
- int array[][] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 } };
- int season = 1;
- if (month >= 1 && month <= 3) {
- season = 1;
- }
- if (month >= 4 && month <= 6) {
- season = 2;
- }
- if (month >= 7 && month <= 9) {
- season = 3;
- }
- if (month >= 10 && month <= 12) {
- season = 4;
- }
- int start_month = array[season - 1][0];
- int end_month = array[season - 1][2];
- Date date = new Date();
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy");// 可以方便地修改日期格式
- String years = dateFormat.format(date);
- int years_value = Integer.parseInt(years);
- int start_days = 1;// years+"-"+String.valueOf(start_month)+"-1";//getLastDayOfMonth(years_value,start_month);
- int end_days = getLastDayOfMonth(years_value, end_month);
- String seasonDate = years_value + "-" + start_month + "-" + start_days;
- return seasonDate;
- }
- public String getThisSeasonFinallyTime(int month) {
- int array[][] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 } };
- int season = 1;
- if (month >= 1 && month <= 3) {
- season = 1;
- }
- if (month >= 4 && month <= 6) {
- season = 2;
- }
- if (month >= 7 && month <= 9) {
- season = 3;
- }
- if (month >= 10 && month <= 12) {
- season = 4;
- }
- int start_month = array[season - 1][0];
- int end_month = array[season - 1][2];
- Date date = new Date();
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy");// 可以方便地修改日期格式
- String years = dateFormat.format(date);
- int years_value = Integer.parseInt(years);
- int start_days = 1;// years+"-"+String.valueOf(start_month)+"-1";//getLastDayOfMonth(years_value,start_month);
- int end_days = getLastDayOfMonth(years_value, end_month);
- String seasonDate = years_value + "-" + end_month + "-" + end_days;
- return seasonDate;
- }
- private int getLastDayOfMonth(int year, int month) {
- if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8
- || month == 10 || month == 12) {
- return 31;
- }
- if (month == 4 || month == 6 || month == 9 || month == 11) {
- return 30;
- }
- if (month == 2) {
- if (isLeapYear(year)) {
- return 29;
- } else {
- return 28;
- }
- }
- return 0;
- }
- public boolean isLeapYear(int year) {
- return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
- }
- public boolean isLeapYear2(int year) {
- return new GregorianCalendar().isLeapYear(year);
- }
- }
Android Calendar的运用的更多相关文章
- Android Calendar的学习与运用
[java]mport java.text.DateFormat; import java.text.ParsePosition; import java.text.SimpleDateFormat; ...
- Android Calendar获取年月日时分秒毫秒
开始使用new Date()测试,并用通过date.getMonth(),和date.getDay()获取,不过后来发现这两个访求是jdk1.1版本的,现在已经不用了,而且结果也不正确. ; int ...
- Android开发-API指南- Calendar Provider
Calendar Provider 英文原文:http://developer.android.com/guide/topics/providers/calendar-provider.html 采集 ...
- phonegap之android原生日历调用
android日历调用首先第一步我们要添加权限 <uses-permission android:name="android.permission.READ_CALENDAR" ...
- Android 向系统日历中添加事件
查了一天半,总算有点大概了.以下是自己的理解,有错误的地方望指正. android系统有日历功能,应用程序可以根据一些接口开发自己的功能,即使是日历app也是根据这些接口开发的,所以我们可以利用程序向 ...
- android ContentResolver详解
查询出来的cursor的初始位置是指向第一条记录的前一个位置的cursor.moveToFirst()指向查询结果的第一个位置.一般通过判断cursor.moveToFirst()的值为true或fa ...
- 图解Android - Zygote, System Server 启动分析
Init 是所有Linux程序的起点,而Zygote于Android,正如它的英文意思,是所有java程序的'孵化池'(玩过星际虫族的兄弟都晓得的).用ps 输出可以看到 >adb shell ...
- Android procrank , showmap 内存分析
(一)DDMS 的Heap Dump 1) Data Object:java object. 2) Class Object:object of type Class, e.g. what you'd ...
- Android Calander Event
必须权限 <uses-permission android:name="android.permission.READ_CALENDAR" /> <uses-pe ...
随机推荐
- [转]五个Linux下用户空间的调试工具
有几个Linux下的用户空间调试工具和技术,它们用来分析用户空间的问题相当有用.它们是: 'print' 语句 查询 (/proc, /sys 等) 跟踪 (strace/ltrace) Valgri ...
- Javascript实现导航锚点滚动效果实例
本篇文章主要介绍了Javascript实现页面滚动时导航智能定位,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 常见的开发页面中可能会有这么一个需求,页面中会有多个模块,每个模块对应一个导航,当页 ...
- html5——伸缩布局
基本概念 1.主轴:Flex容器的主轴主要用来配置Flex项目,默认是水平方向 2.侧轴:与主轴垂直的轴称作侧轴,默认是垂直方向的 3.方向:默认主轴从左向右,侧轴默认从上到下 4.主轴和侧轴并不是固 ...
- dubbo之并发控制
并发控制 配置样例 样例 1 限制 com.foo.BarService 的每个方法,服务器端并发执行(或占用线程池线程数)不能超过 10 个: <dubbo:service interface ...
- MyBatis入门3_mapper.xml优化(parameterType简写_NameSpace简写_sql片段_特殊字符处理)_动态SQL
本文为博主辛苦总结,希望自己以后返回来看的时候理解更深刻,也希望可以起到帮助初学者的作用. 转载请注明 出自 : luogg的博客园 谢谢配合! 优化 1.起别名(一般不用,写全方便查看类出处) 以前 ...
- Flask 框架构建
Flask 框架构建,目标构建成Django类似的结构 一. 先看看构建后的效果 # 第一次初始化 python manage.py db init # 生成数据库版本 python manage.p ...
- Centos 编译安装Haproxy
一.环境介绍 1.Centos6 2. haproxy-1.4.25.tar.gz 二.安装 $ curl -O http://haproxy.1wt.eu/download/1.4/src/hapr ...
- C# Thu Mar 1 00:00:00 UTC+0800 2012 如何转换为2012-03-01
string s = "Thu Mar 1 00:00:00 UTC+0800 2012"; DateTime dt = DateTime.ParseExact(s, " ...
- System----堡垒机
你知道嘛是堡垒机吗? 你知道堡垒机是奏嘛的吗? 1,改server 端 socket server 接受到的请求 执行指令前,记录收到的指令,来源ip 用户名 缺点:每台机器都要更改源码,加入指令记录 ...
- 第四节:DataFrame属性及方法(下)