首页 > 编程语言 >JAVA获取当前时间的三种方法

JAVA获取当前时间的三种方法

时间:2024-12-27 22:47:11浏览次数:5  
标签:JAVA System SimpleDateFormat 获取 三种 Date ------------- Calendar calendar

JAVA获取当前时间的三种方法| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |

| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 17340227| JAVA获取当前时间的三种方法| 2023-04-21T14:20:00| | BlogPost|


1、java.util.Date day=new Date(); SimpleDateFormat sdf= new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”); System.out.println(sdf.format(day)); 通过Date类来获取当前时间,比较常用。需要使用Java.util.Date类,速度一般。 2、SimpleDateFormat sdf= new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”); System.out.println(sdf.format(System.currentTimeMillis())); 通过System类中的currentTimeMillis方法来获取当前时间,无需导入类,速度最快。 3、通过Calendar类来获取当前时间 Calendar calendar = Calendar.getInstance(); int year = calendar.get(Calendar.YEAR); int month = calendar.get(Calendar.MONTH); int date = calendar.get(Calendar.DATE); int hour = calendar.get(Calendar.HOUR_OF_DAY); int minute = calendar.get(Calendar.MINUTE); int second = calendar.get(Calendar.SECOND); System.out.println(year + “年” + month + “月” + date + “日” + hour + “时” + minute + “分” + second + “秒”); 可以对每个时间域单独修改 对时间进行加减操作等。 可灵活构建,显示格式,但速度较慢。

 

| 648658| | 2024-04-29T20:44:00| false| | 2023-04-21T14:19:32.26| true| 1、java.util.Date day=new Date(); SimpleDateFormat sdf= new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”); System.out.println(sdf.format(day)); 通过Date类来获取当前时| Anonymous|

标签:JAVA,System,SimpleDateFormat,获取,三种,Date,-------------,Calendar,calendar
From: https://www.cnblogs.com/ralphlauren/p/18621226

相关文章

  • Java获取昨天的时间
    Java获取昨天的时间|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|-----......
  • JAVA设计模式总结之23种设计模式
    JAVA设计模式总结之23种设计模式|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|--------......
  • Java实现FTP文件上传和下载
    Java实现FTP文件上传和下载|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------......
  • java通过模拟post方式提交表单实现图片上传功能实例
    java通过模拟post方式提交表单实现图片上传功能实例|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-----......
  • Java中Iterator用法整理
    Java中Iterator用法整理|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|-......
  • java中Map遍历的四种方式
    java中Map遍历的四种方式|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|......
  • JAVA变量
    JAVA变量|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|-------------......
  • Java从网络读取图片并保存至本地
    Java从网络读取图片并保存至本地|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|--------......
  • java获取本月开始时间和结束时间、上个月第一天和最后一天的时间以及当前日期往前推一
    java获取本月开始时间和结束时间、上个月第一天和最后一天的时间以及当前日期往前推一周、一个月|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermissi......
  • java获取当前年份、月份和日期
    java获取当前年份、月份和日期|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|----------......