我正在使用 EWS JAVA API 1.2,但使用此代码保存 ItemAttachment 时遇到问题。
if(attachmentsCol.getPropertyAtIndex(i) instanceof FileAttachment)
{
...
}
else
{
ItemAttachment attachment = (ItemAttachment)attachmentsCol.getPropertyAtIndex(i);
attachment.load();
Item item = attachment.getItem();
item.load(newPropertySet(ItemSchema.MimeContent));`
MimeContent Itemmc = item.getMimeContent();
....
}
item.load(....)
返回此错误
microsoft.exchange.webservices.data.InvalidOperationException:无法执行此操作,因为此服务对象没有 Id。
谢谢您的帮助。