gpt4 book ai didi

Java JSpinner 错误地更改了它的年份

转载 作者:行者123 更新时间:2023-11-30 09:18:55 24 4
gpt4 key购买 nike

这就是我创建日期 JSpinner 的方式。当我单击箭头时,它只能将年份减少某个值(两个或一个)或增加(仅几次)一个。我很困惑,请帮忙!

Date current = calendar.getTime();
SpinnerDateModel yearsData = new SpinnerDateModel(current,null,null,Calendar.YEAR);
JSpinner years = new JSpinner(yearsData);
years.setEditor(new JSpinner.DateEditor(years, "YYYY"));
JFormattedTextField tfYears = ((JSpinner.DefaultEditor)years.getEditor()).getTextField();
tfYears.setHorizontalAlignment(JTextField.RIGHT);
tfYears.setFont(new Font("SansSerif", Font.PLAIN, 10));

最佳答案

尝试使用 y 而不是 Y

years.setEditor(new JSpinner.DateEditor(years, "yyyy"));

Y = 周年,y = 年

阅读:SimpleDateFormat

关于Java JSpinner 错误地更改了它的年份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18251680/

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