Examples: getAttachment method

This agent looks for the file attachment forest.bmp in all the documents in a database.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();
      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      DocumentCollection dc = db.getAllDocuments();
      Document doc = dc.getFirstDocument();
      while (doc != null) {
        EmbeddedObject obj = 
                doc.getAttachment("forest.bmp");
        if (obj != null) {
          System.out.println("Found " + obj.getName() +
                " in \"" + doc.getItemValueString(
                "Subject") + "\"");
          break; }
        doc = dc.getNextDocument(); }
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}