⑴ java怎麼實現日歷日程提醒
用資料庫吧
首先,保存事件的表mem
create table mem(
mid varchar(10) not null prmary key,
mdate date not null,
mem varchar(255),
userid varchar(20) not null
)
-- 如果是簡單的單用戶的話可以不要這個。
-- 然後用戶登錄的時候你就可以使用select mem from mem where userid='當前用戶' and m_date='今天的日期'就可以查詢出這個用戶添加的日程提醒了。