我正在尝试使用org.eclipse.swt.ole库通过java程序发送邮件。 我使用的是64位JVM和32位Outlook。当我尝试运行程序时,它显示“无法创建OLEClientSite”。经过互联网上的许多论坛后,我认为问题是因为64位jvm和32位前景。我附加代码来创建OLEClientSite。如果这开始工作,我可以进一步编写程序。
import org.eclipse.swt.SWT;
import org.eclipse.swt.ole.win32.OLE;
import org.eclipse.swt.ole.win32.OleAutomation;
import org.eclipse.swt.ole.win32.OleClientSite;
import org.eclipse.swt.ole.win32.OleFrame;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class OleTest {
public static void main(String[] args) {
Email("test@gmail.com","test email", "test");
}
public static void Email(String sRecipient, String sSubject, String sReportName)
{
Display display = new Display();
Shell shell = new Shell(display);
OleFrame frame = new OleFrame(shell, SWT.NONE);
// This should start outlook if it is not running yet
OleClientSite site = new OleClientSite(frame, SWT.NONE,
"Outlook.Application");
site.doVerb(OLE.OLEIVERB_INPLACEACTIVATE);
// Now get the outlook application
OleClientSite site2 = new OleClientSite(frame, SWT.NONE,
"Outlook.Application");
OleAutomation outlook = new OleAutomation(site2);
}
}
The error which I am getting is:
Exception in thread "main" org.eclipse.swt.SWTException: Failed to create Ole Client.
result = -2147221164
at org.eclipse.swt.ole.win32.OLE.error(Unknown Source)
at org.eclipse.swt.ole.win32.OleClientSite.<init>(Unknown Source)
at OleTest.Email(OleTest.java:22)
at OleTest.main(OleTest.java:14)
答案 0 :(得分:1)
这听起来像Eclipse bug 361543中描述的问题。这在Eclipse中并不是一个问题。似乎无法从64位SWT(或任何64位程序)调用32位Outlook。