有没有办法使用iCal4j来设置这个X-ALT-DESC;FMTTYPE=text/html?
我需要在一些事件的描述上设置HTML内容。
发布于 2016-05-25 19:35:40
XProperty p = new XProperty("X-ALT-DESC");
p.getParameters().add(new FmtType("text/html"));
p.setValue("<html></html>");https://stackoverflow.com/questions/37419184
复制相似问题