zoukankan      html  css  js  c++  java
  • android java获取当前时间的总结

    Java 代码
    1. import   java.text.SimpleDateFormat;     
    2. SimpleDateFormat   formatter   =   new   SimpleDateFormat   ("yyyy年MM月dd日   HH:mm:ss     ");     
    3.  Date   curDate   =   new   Date(System.currentTimeMillis());//获取当前时间    
    4. String   str   =   formatter.format(curDate);     
    1. import   java.text.SimpleDateFormat;       
    2.  SimpleDateFormat   formatter   =   new   SimpleDateFormat   ("yyyy年MM月dd日   HH:mm:ss     ");     
    3. Date   curDate   =   new   Date(System.currentTimeMillis());//获取当前时间    
    4. String   str   =   formatter.format(curDate);  

     可以获取当前的年月时分,也可以分开写:

    Java代码
    1. SimpleDateFormat   sDateFormat   =   new   SimpleDateFormat("yyyy-MM-dd   hh:mm:ss");     
    2. String   date   =   sDateFormat.format(new   java.util.Date());  
    1. SimpleDateFormat   sDateFormat   =   new   SimpleDateFormat("yyyy-MM-dd   hh:mm:ss");    
    2. String   date   =   sDateFormat.format(new   java.util.Date());  

     如果想获取当前的年月,则可以这样写(只获取时间或秒种一样):

    Java代码
    1. SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM");  
    2. String date=sdf.format(new java.util.Date());  
    1. SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM"); 
    2. String date=sdf.format(new java.util.Date());  

     当然还有就是可以指定时区的时间(待):

    df=DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL,Locale.CHINA);  
    System.out.println(df.format(new   Date()));

  • 相关阅读:
    ESXi创建磁盘命令
    TNS-12518,TNS-12536,TNS-00506,Linux Error: 11: Resource temporarily unavailable
    监听的instance status blocked分析
    Oracle 用户、对象权限、系统权限
    MIME详解
    11g等待事件之library cache: mutex X
    Latch Free
    PowerDesigner小技巧
    yum本地源配置
    内核参数SEMMSL SEMMNS SEMOPM SEMMNI参数的设置
  • 原文地址:https://www.cnblogs.com/qhyhao/p/3755383.html
Copyright © 2011-2022 走看看