你好我正在搜索的是在系統中安裝的Outlook嗎?我在Java工作。我找到了一些鏈接,但我不能達到我的目標。我發現一種方法 「類型officeType = Type.GetTypeFromProgID(」Outlook.Application「);」,但我不知道我應該導入哪個包。 我寫下面的代碼,但它給了我錯誤。如何檢查outlook是否在系統中安裝或不使用java?
Type officeType = Type.GetTypeFromProgID("Outlook.Application");
if (officeType == null)
{
// Outlook is not installed.
// Show message or alert that Outlook is not installed.
}
else
{
// Outlook is installed.
// Continue your work.
}
有助於解決此問題。在此先感謝...
谷歌搜索「GetTypeFromProgID」的第一個結果是http://msdn.microsoft.com/en-us/library/vstudio/system.type.gettypefromprogid。在java中使用* that *方法會遇到一些麻煩。 –
@OlegEstekhin是否有可能使用java? –