17. 处理日期

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Calendar;

public class Test {
    public static void main(String[] args) {
        Date date = new Date(); //创建日期对象
        SimpleDateFormat formater = new SimpleDateFormat("yyyy-MM-dd");//定制日期格式
        System.out.println("当前日期为:"+formater.format(date));

        Calendar cal=Calendar.getInstance();
        cal.set(Calendar.YEAR, 2015);
                 //一月为0  ,因此4月为3
        cal.set(Calendar.MONTH, 3);
        cal.set(Calendar.DAY_OF_MONTH, 6);
        int week=cal.get(Calendar.WEEK_OF_YEAR);
        System.out.println("2015年4月6日是一年中的第"+week+"星期。");

    }

}
时间: 2024-10-07 08:40:35

17. 处理日期的相关文章

python日期时间处理

time模块 1 #-*- coding: utf-8 -*- 2 3 """ 4 #获取当前时间的时间戳(单位秒) 5 time.time() 6 7 #推迟指定秒数后再运行 8 time.sleep(N) 9 10 #将时间元组转换为时间戳 11 time.mktime(t) 12 13 #将时间戳转换为UTC+0时区的时间元组,默认转换time.time() 14 time.gmtime() 15 16 #将时间戳转换为当地时区的时间元组,默认转换time.time()

jeDate 日期控件

写在前面的话: 最近在做一个日期范围的功能,研究了一个12306网站的日期范围选择,他用的是jcalendar.js,没有直接在日历插件里面做判断开始时间小于结束时间 而是自己在代码里面做了判断如下: 1 // 初始化页面的选择框 2 function initQueryInput(newStartDate,newEndDate) { 3 $('#queryStartDate').focus(function(){ 4 $('#queryStartDate').jcalendar({ 5 sta

MFC中CTime获取日期时间的方法

MFC中CTime类的功能非常强大,可以获取年.月.日.小时.分钟.秒.星期等等,最最重要的是可根据需要去格式化.下面是具体的使用方式: ① 定义一个CTime类对象 CTime time; ② 得到当前时间 time = CTime::GetCurrentTime(); ③ GetYear( ),GetMonth( ), GetDay( ), GetHour( ), GetMinute( ), GetSecond( ), GetDayOfWeek( ) 返回整型(int)对应项目 ④ 将当前时

Python3-datetime模块-日期与时间

官方文档 http://python.usyiyi.cn/translate/python_352/library/datetime.html 代码示例 from datetime import datetime now = datetime.now() print("年:%s" % now.year) print("月:%s" % now.month) print("日:%s" % now.day) print("时:%s"

Linux学习汇总——Linux文件系统标准,日期时间和文件目录管理命令

Linux相关知识点 家目录,主目录 home directory #ls  -l /root    显示/root 列表 dr-xr-xr-x.   2 root root  4096 Nov  4 05:58  install.log.syslog  (各项参数含义如下) d                rw-r--r--.           1                          root         root                 3482        

Python 之路 Day5 - 常用模块学习

本节大纲: 模块介绍 time &datetime模块 random os sys shutil json & picle shelve xml处理 yaml处理 configparser hashlib subprocess logging模块 re正则表达式 模块,用一砣代码实现了某个功能的代码集合. 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合.而对于一个复杂的功能来,可能需要多个函数才能完成(函数又可以在不同的.p

Python高手之路【七】python基础之模块

本节大纲 模块介绍 time &datetime模块 random os sys shutil json & picle shelve xml处理 yaml处理 configparser hashlib subprocess logging模块 re正则表达式 1:模块介绍 模块,用一砣代码实现了某个功能的代码集合. 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合.而对于一个复杂的功能来,可能需要多个函数才能完成(函数又可以

T-SQL_常用内置函数和操作

作者:icyjiang 推荐:LinkEdu SELECT --从数据库表中检索数据行和列 INSERT --向数据库表添加新数据行 DELETE --从数据库表中删除数据行 UPDATE --更新数据库表中的数据  数据定义 CREATE TABLE --创建一个数据库表 DROP TABLE --从数据库中删除表 ALTER TABLE --修改数据库表结构 CREATE VIEW --创建一个视图 DROP VIEW --从数据库中删除视图 CREATE INDEX --为数据库表创建一个

LeetCode 599. Minimum Index Sum of Two Lists (从两个lists里找到相同的并且位置总和最靠前的)

Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need to help them find out their common interest with the least list index sum. If there is a choice tie betw