gpt4 book ai didi

java - SimpleDateFormat 未产生预期输出

转载 作者:行者123 更新时间:2023-12-02 00:26:47 25 4
gpt4 key购买 nike

我使用 JCalender 来获取日期。它返回这样的日期

Thu Mar 01 18:35:53 PST 2012

但我需要的是这种格式。

01/03/2012 

我尝试过以下代码:

SimpleDateFormat MydateFormat = new SimpleDateFormat("dd/MM/yyyy");
FromDate.getDateEditor().addPropertyChangeListener(
new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent e) {
if ("date".equals(e.getPropertyName())) {
System.out.println(e.getPropertyName()
+ ": -->" + (Date) e.getNewValue());
try {
fdate = MydateFormat.parse(e.getNewValue().toString());
JOptionPane.showMessageDialog(rootPane, fdate);
} catch (ParseException ex) {
Logger.getLogger(DashboardChart.class.getName()).log(Level.SEVERE, null, ex);
}

}
}
});

最佳答案

您要求的是一个基于当前对象的新Date对象。试试这个:

package test;

import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JOptionPane;

public class TestDateFormat {

public static void main(String[] args) {
SimpleDateFormat MydateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = new Date();
String fdate = MydateFormat.format(date);
System.out.println(date + " \tFORMATTED: " + fdate);
JOptionPane.showMessageDialog(null, fdate);
}
}

例如输出

Sat Mar 24 23:40:09 EST 2012    FORMATTED: 24/03/2012

关于java - SimpleDateFormat 未产生预期输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9851632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com