Android 日期格式帮助
大家好,我正在使用一个简单的代码来获取当前日期并更改其格式,但每次我使用 SimpleDateFormat 类时我都无法这样做,应用程序会崩溃而不会被执行。
我将我的代码粘贴在这里:
Date d=new Date();
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/YYYY",Locale.ENGLISH);
String newd= formatter.format(d);
有人可以指出我在这里犯的错误吗?
预先感谢您的帮助!
Hi guys i am using a simple code to get current date and change its format but i am unable to do so every time i use the SimpleDateFormat class the application crashes with out being executed.
I am pasting my code here:
Date d=new Date();
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/YYYY",Locale.ENGLISH);
String newd= formatter.format(d);
can some body point out my mistake that i am making here??
Thank you in advance for your help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
YYYY
应该是yyyy
YYYY
should beyyyy