Steps followed :
Took a back of my lotus notes as sample.nsf
And then tried to read the attachments from the sample.nsf
Code snippet :
Database db = session.getDatabase("",`enter code here`"C:\\Projects\\NotesToJava\\sample.nsf");
DocumentCollection dc = db.getAllDocuments();
Document doc = dc.getFirstDocument();
while (doc != null) {
RichTextItem body = (RichTextItem) doc.getFirstItem("Body");
if (body.getEmbeddedObject("Request.xlsx") != null)
System.out.println("Found BPM_Dev_Access_Request.xlsx in "
+ doc.getItemValueString("Subject"));
doc = dc.getNextDocument();
}
|
| ||||
|
feedback
|
|
You need to get the attachments out of each document, as opposed to the EmbeddedObjects. Something like this:
| |||
|
feedback
|
|
No need to use From the Lotus help:
| |||
|
feedback
|