Examples: getDocumentByURL method
This agent prints the value of the Subject item for the IBM® home page.
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();
Document doc = db.getDocumentByURL
("http://www.ibm.com", false);
System.out.println(
doc.getItemValueString("Subject"));
} catch(Exception e) {
e.printStackTrace();
}
}
}