JAVA/CORBA クラス


例:getDocumentByURL メソッド
次のエージェントは、Lotus のホームページの Subject アイテムの値を出力します。

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.lotus.com", false);
     System.out.println(
          doc.getItemValueString("Subject"));
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

関連項目