简单的java日期戳问题
我希望捕获交易变量日期的当前日期。
这就是我正在寻找的格式。
我知道 simpleDateFormat 也适用于我的数据库。
这是我之前在 gui 中输入日期时用来输入日期的内容:
SimpleDateFormat sdf = new SimpleDateFormat("mm-dd-yyyy");
try {
ev.setDate(sdf.parse("12-10-2011"));
} catch (ParseException ex) {
Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
}
我只是希望能够获取当前日期,而不必像上面的代码那样对字符串进行硬编码。
谢谢,
I am looking to capture the current date for a date of transaction variable.
this is the format I'm looking for.
I know simpleDateFormat works well with my db too.
here's what I've used to input the date before when it was a date that I typed in the gui:
SimpleDateFormat sdf = new SimpleDateFormat("mm-dd-yyyy");
try {
ev.setDate(sdf.parse("12-10-2011"));
} catch (ParseException ex) {
Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
}
I just want to be able to get the current date instead of having to hard code a string like the above code.
thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该是
编辑
should be
Edit
请使用以下代码:
下面是初始化 sdf 对象时可能的值列表,该对象取自 此处:
Plz use the below code:
Below is a list of possible values while initializing the
sdf
object taken from here: