博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取年月日,格式“20170428”
阅读量:5036 次
发布时间:2019-06-12

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

1、js获取年月日

var now=new Date();

var yue = (now.getMonth()+1).length > 2 ? (now.getMonth()+1):"0"+(now.getMonth()+1);
var ntime = now.getFullYear().toString()+yue+now.getDate().toString();

alert(ntime);

//20170428

2、java获取年月日

Date d = new Date();

int year = d.getYear();  //117

int mon = d.getMonth()+1;   //4

int date = d.getDate();

转换成字符串拼接:117428

Date d = new Date();

SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");

system.out.println(sdf.format(d));

//20170428

Calendar now = Calendar.getInstance();

system.out.println("年月日:"+now.get(Calendar.YEAR)+(now.get(Calendar.MONTH)+1)+now.get(Calendar.DAY_OF_MONTH));

//(now.get(Calendar.MONTH)+1)  //4

//2017428

 

转载于:https://www.cnblogs.com/min77/p/6782023.html

你可能感兴趣的文章
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
gulp-rev-append md5版本号
查看>>
IO流之File类
查看>>
sql 基础语句
查看>>
CF717A Festival Organization(第一类斯特林数,斐波那契数列)
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
Oracle composite index column ordering
查看>>
kaggle竞赛
查看>>
区块链入门教程
查看>>
npm常用命令
查看>>
南海区行政审批管理系统接口规范v0.3(规划)4.2.【queryExpireList】当天到期业务查询...
查看>>