JAVA/CORBA クラス


例:writeText メソッド
次のエージェントは、選択した文書の Subject アイテムをファイル名に使用してファイルを作成し、それに選択した文書の Body アイテムを書き込みます。

import lotus.domino.*;

public class JavaAgent extends AgentBase {

public void NotesMain() {

try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();

// (Your code goes here)

// Get the input file
DocumentCollection dc = agentContext.getUnprocessedDocuments();
Document doc = dc.getFirstDocument();
String outPath =
"c:\\StreamFiles\\" + doc.getItemValueString("Subject") + ".txt";
Stream outStream = session.createStream();
if (outStream.open(outPath, "ASCII")) {
if (outStream.getBytes() == 0) {
outStream.writeText(doc.getItemValueString("Body"),
Stream.EOL_CRLF);
outStream.close();
}
else
System.out.println("Output file exists and has content");
}
else
System.out.println("Output file open failed");

} catch(NotesException e) {
e.printStackTrace();

} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目