博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Swing的JSpinner组件设置日期时间选择器
阅读量:4955 次
发布时间:2019-06-12

本文共 472 字,大约阅读时间需要 1 分钟。

代码:

1 //获得时间日期模型 2         SpinnerDateModel model = new SpinnerDateModel(); 3         //获得JSPinner对象 4         JSpinner year = new JSpinner(model); 5         year.setValue(new Date()); 6         //设置时间格式 7         JSpinner.DateEditor editor = new JSpinner.DateEditor(year, 8                 "yyyy-MM-dd HH:mm:ss"); 9         year.setEditor(editor);10         year.setBounds(34, 67, 219, 22);11         contentPane.add(year);

 

转载于:https://www.cnblogs.com/jpwz/p/6381177.html

你可能感兴趣的文章
iOS7自定义statusbar和navigationbar的若干问题
查看>>
程序员如何提高影响力:手把手教你塑造个人品牌
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Ext JS学习第十三天 Ext基础之 Ext.Element
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Atitit mtp ptp rndis midi协议的不同区别
查看>>
Ajax辅助方法
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
Scrapy入门程序点评
查看>>
DotNetty网络通信框架学习之源码分析
查看>>
8.1 Android Basic 数据存储 Preferences Structured(分组的Preferences)
查看>>
原因和证明
查看>>
VC6.0图像处理2--图像的反色
查看>>
Snoop, 对WPF程序有效的SPY++机制
查看>>
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>