私はJCalendar
(Swingで)JDateChooserを使用しています。「yyyy-MM-dd」の形式を取得しようとしていますが、何らかの理由で時刻も取得し、常に同じです (00:00:00 MDT)。時間をなくす方法を知っている人はいますか?前もって感謝します。
try {
calendarDate = new JDateChooser();
} catch (Exception e) {
e.printStackTrace();
}
calendarDate.setDateFormatString("yyyy-MM-dd");
dateLabel = new JLabel("Date");
parent.frame2.getContentPane().add(dateLabel);//1
parent.frame2.getContentPane().add(calendarDate);