将事件或任务添加到 JAVA 中的日历 - Netbeans

Add event or task to calendar in JAVA - Netbeans

是否有库或方法可以将事件添加到日历中,采用 google 日历的样式?我已经搜索但只找到 select 日期,但没有使用 Netbeans for Desktop App 将事件或任务分配给日历中的特定日期。

标准的名称 Calendar class (java.util.Calendar) 具有误导性 - class 不是我们习惯的日历,它确实 存储约会、事件或类似的东西——它更像是一个瞬间。

它通常用于 工作 不同的 date/time 字段,例如小时、日期、月份...
有关详细信息,请参阅 documentation:

The Calendar class is an abstract class that provides methods for converting between a specific instant in time and a set of calendar fields such as YEAR, MONTH, DAY_OF_MONTH, HOUR, and so on, and for manipulating the calendar fields, such as getting the date of the next week. ...