博客
关于我
Java处理时间Date
阅读量:541 次
发布时间:2019-03-09

本文共 1102 字,大约阅读时间需要 3 分钟。

import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class DateParserT {    public static void main(String[] args) {        Date dt = new Date();        System.out.println(dt); // 格式:Wed Jul 06 09:28:19 CST 2016        String formatDate = null;        String dateStr = "2016-07-06";        String FormatStr = "yyyy-MM-dd";        SimpleDateFormat dFormat = new SimpleDateFormat(FormatStr);        try {            Date date = dFormat.parse(dateStr);            System.out.println(date);// 格式:2016-07-06            System.out.println(dFormat.format(date));        } catch (ParseException e) {            e.printStackTrace();        }        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");        SimpleDateFormat sdf2 = new SimpleDateFormat("HHmmss");        Date currentTime = new Date();        String datastring = sdf.format(currentTime); // 格式:20160706094333        String onlyStr = datastring.replace(" ", "");        String subStr = onlyStr.substring(1); // 格式:1467770970        System.out.println(subStr);    }}

转载地址:http://reliz.baihongyu.com/

你可能感兴趣的文章
nginx开机启动脚本
查看>>
nginx异常:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf
查看>>
nginx总结及使用Docker创建nginx教程
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in usrlocalnginxconfnginx.conf128
查看>>
nginx日志分割并定期删除
查看>>
Nginx日志分析系统---ElasticStack(ELK)工作笔记001
查看>>
Nginx映射本地json文件,配置解决浏览器跨域问题,提供前端get请求模拟数据
查看>>
nginx最最最详细教程来了
查看>>
Nginx服务器---正向代理
查看>>
Nginx服务器上安装SSL证书
查看>>
Nginx服务器基本配置
查看>>
Nginx服务器的安装
查看>>
Nginx模块 ngx_http_limit_conn_module 限制连接数
查看>>
Nginx模块 ngx_http_limit_req_module 限制请求速率
查看>>
nginx添加模块与https支持
查看>>
Nginx用户认证
查看>>
Nginx的location匹配规则的关键问题详解
查看>>
Nginx的Rewrite正则表达式,匹配非某单词
查看>>
Nginx的使用总结(一)
查看>>