在swings中设置jspinner的时间格式
我正在使用 java swing 应用程序。在该应用程序中,我必须接受用户的时间输入。 我暂时需要制作一个 JSpinner,仅采用 hh:mm am/pm 格式。我在属性中搜索但无法获得这种格式。
请建议我一些以 hh:mm am/pm 格式显示时间的方法。我感谢您提出的所有宝贵建议。
I am working in a java swing application. In that application i have to take time input from user.
I need to make a JSpinner for the time, only in the hh:mm am/pm format. i searched in properties but could not get this format.
Please suggest me some way to display time in hh:mm am/pm format. I thank to all your valuable suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像这样设置编辑器和日期模型:
You can set an editor and a date model like this:
感谢您回答纪尧姆。在进行一些小更改后,您的答案对我有用,即
spinner.setEditor(new JSpinner.DateEditor(spinner, "h:mm a"));
这给了我一个合适的格式。
Thanks for answering Guillaume. Your answer is working for me after making a small change i.e.
spinner.setEditor(new JSpinner.DateEditor(spinner, "h:mm a"));
This gives me an appropriate format.