在 Java,我用一个班子,我需要将体格转换到一个日期格式(d/MM/yyyy)。 我一直在使用简单的表格来编排我的意见,但它正在显示该周的时间、时间区和日期。 这里是我法典的一个要点:
SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");
Date date = new Date();
do{
y = JOptionPane.showInputDialog(null,
"Please enter the vehicle s registration date",
"Year?",
JOptionPane.QUESTION_MESSAGE);
try {
date = df.parse(y);
check = true;
}
catch (ParseException e) {
check = false;
}
}
while (check == false);
return date;
Anyone know how I can keep the format to just the date (e.g. 12/3/2000)? Thanks