我处理带有议程的日历,所以我使用 JFXtras 库和示例。我需要一些帮助。我可以在哪里保存在 JFXtras 中添加的约会?我对MySQL一无所知,还有其他选择吗?是否可以使用 txt 文件做某事,但我如何才能获得准确选择的约会的信息?
Appointment[] lTestAppointments = new Appointment[]{
new Agenda.AppointmentImplLocal()
.withStartLocalDateTime(LocalDateTime.of(lTodayLocalDate, LocalTime.of(8, 00)))
.withEndLocalDateTime(LocalDateTime.of(lTodayLocalDate, LocalTime.of(11, 30)))
.withSummary("A")
.withDescription("A much longer test description")
.withAppointmentGroup(lAppointmentGroupMap.get("group07"))
..............................................................................