我正在開發Notes 8.5.2的Lotus Notes插件,該插件將附件從電子郵件保存到硬盤。但是,當我嘗試從Notes文檔中讀取附件名稱時,我總是得到包含第一個附件名稱和一些垃圾數據的相同字符串。Lotus Notes從文檔
protected Vector<String> getAttachmentNames() throws NotesException,
IOException {
Vector<String> attachmentNames = new Vector<String>();
Item item = null;
Enumeration<?> itemsEnum = mailDoc.getItems().elements();
while (itemsEnum.hasMoreElements()) {
item = (Item) itemsEnum.nextElement();
if (item.getType() == Item.ATTACHMENT) {
attachmentNames.add(getAttachmentNameOf(item));
}
}
return attachmentNames;
}
protected String getAttachmentNameOf(Item item) throws NotesException,
IOException {
return getAttachmentName(item.getValueString());
}
getAttachmentName只做一些字符串格式化以生成唯一的文件名。
聽起來像我的問題,我在保存附件之前將消息轉換爲MIME。在轉換爲MIME作品之前保存附件。 感謝您的鏈接,值得注意的東西。 – Trellmor 2012-02-01 08:27:56