Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 toedter 的 JCalendar 中选择多天?就像我可以在日历中突出显示 2 或 3 天,然后在使用按钮触发事件后突出显示这些天。
还是我应该更好地使用 JTable 作为日历?
我会使用一个包含JTable一个JDateChooserCellEditor和一个自定义渲染器的单列。DemoTable是一个例子,在这里看到。TableModel应该包含一个List<java.util.Date>, 作为便于排序的Date工具。您可以在 中提供一个方法,该方法可以在按钮的处理程序中调用。ComparableaddRow()DemoTableModelAdd
JTable
JDateChooserCellEditor
DemoTable
TableModel
List<java.util.Date>
Date
Comparable
addRow()
DemoTableModel