问题描述
需要检查的几件事。
第一次更改:
Session s = NotesFactory.createSession();
至:
Session s = NotesFactory.createSession((String) null, (String) null, password);
如果仍然无法正常工作,请更改:
Database db = s.getDatabase("", "mail/xxxx.nsf")
至:
Database db = s.getDatabase((String) null, "mail/xxxx.nsf")
我还建议养成回收Domino对象的习惯。
解决方法
我正在尝试使用Java程序在本地控制我的Lotus Notes,以便为我自动发送电子邮件。尝试获取数据库对象时遇到以下问题。
try {
NotesThread.sinitThread();
Session s = NotesFactory.createSession();
Database db = s.getDatabase("","mail/xxxx.nsf")
} finally {
NotesThread.stermThread();
}
我收到以下异常:
NotesException: Database open failed (%1)
at lotus.domino.local.Database.Nopen(Native Method)
at lotus.domino.local.Database.open(Unknown Source)
我已经将我的nsf文件和Notes.jar复制到了我的类路径中,谁知道这是什么问题?