A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 狼王 高级黑马   /  2013-10-23 13:24  /  1314 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

如何利用JAVA快速准确提取当前系统时间方法和格式,我们先来看实现代码:
1、方式一
  1.         /**
  2.          * 返回当前日期时间字符串
  3.          * 默认格式:yyyy-mm-dd hh:mm:ss
  4.          *
  5.          * @return String 返回当前字符串型日期时间
  6.          */
  7.         public static String getCurrentTime() {
  8.                       String returnStr = null;
  9.                 SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  10.                 Date date = new Date();
  11.                 returnStr = f.format(date);
  12.                 return returnStr;
  13.         }
复制代码
2、方式二
  1. /**
  2.         * 返回当前日期时间字符串<br>
  3.       * 默认格式:yyyymmddhhmmss
  4.        *
  5.       * @return String 返回当前字符串型日期时间
  6.        */
  7.      public static BigDecimal getCurrentTimeAsNumber() {
  8.          String returnStr = null;
  9.            SimpleDateFormat f = new SimpleDateFormat("yyyyMMddHHmmss");
  10.             Date date = new Date();
  11.            returnStr = f.format(date);
  12.             return new BigDecimal(returnStr);
  13.        }
复制代码
3、方式三
  1.       /**
  2.       * 返回当前字符串型日期
  3.       *
  4.       * @return String 返回的字符串型日期
  5.        */
  6.      public static String getCurDate() {
  7.           Calendar calendar = Calendar.getInstance();
  8.           SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
  9.           String strDate = simpledateformat.format(calendar.getTime());
  10.           return strDate;

  11.      }
复制代码
4、方式四
  1.       /**
  2.        * 返回当前字符串型日期
  3.          *
  4.         * @param format
  5.         *            格式规则
  6.         *
  7.         * @return String 返回的字符串型日期
  8.         */
  9.        public static String getCurDate(String format) {
  10.            Calendar calendar = Calendar.getInstance();
  11.            SimpleDateFormat simpledateformat = new SimpleDateFormat(format);
  12.            String strDate = simpledateformat.format(calendar.getTime());
  13.            return strDate;
  14.        }
复制代码

1 个回复

倒序浏览
恩,学学!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马