lotus « Development « Java I/O Q&A





1. how to acces .nsf file by java for desktop application without IBM lotus installed    stackoverflow.com

I don't have ibm lotus installed but i want to access some database containing .nsf file through java for a desktop application. thanks and regards

2. How do I get all the attachments from a .nsf(lotus notes) file using java    stackoverflow.com

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 ...