Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Swingx JXDatePicker 在带有 NEtBeans 的 Java 应用程序中启用日期选择。
我只需要日期,但只要从日历按钮中选择日期,我就会以这种形式将日期和时间一起格式化:Sat Apr 13 00:00:00 BST 2013
但是,我只想知道日期而不是时间。
形式如下:2013 年 4 月 13 日星期六或不包括时间在内的任何其他形式
有没有办法将默认格式修剪为只有日期。
谢谢你们。
你可以试试这个:
DateFormat df = DateFormat.getDateInstance(); String fromdate = df.format(txt_fromdate.getDate());