将 Outlook 联系人获取到基于 C# 表单的应用程序中

问题描述 投票:0回答:4

我尝试过将 Outlook 联系人的联系人导入到 C# 中,但没有成功。我使用了 Microsoft Outlook 12.0 对象库。我想在richtextbox或gridview中显示数据。

代码粘贴在下面。请让我知道我应该在那里做什么。

    private void getContacts_Click(object sender, EventArgs e)
    {
        // Obtain an instance of the Outlook application
        Outlook.Application app = new Outlook.ApplicationClass();

        // Access the MAPI namespace
        Outlook.NameSpace ns = app.GetNamespace("MAPI");

        // Get the user's default contacts folder
        Outlook.MAPIFolder contacts =
        ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);

        // Iterate through each contact
        for (int i = 1; i < contacts.Items.Count + 1; i++)
        {
            // Get a contact
            Outlook.ContactItem contact =
            (Outlook.ContactItem)contacts.Items[i];
            richTextBox1.Text += contact.FullName + " (" +
            contact.BusinessTelephoneNumber + ")" + Environment.NewLine;
            Application.DoEvents();
        }
    }
}
c# outlook
4个回答
7
投票

这对我有用。它从 Outlook 获取所有联系人并将其显示在 datagridview 中。

  Microsoft.Office.Interop.Outlook.Items OutlookItems;
  Microsoft.Office.Interop.Outlook.Application outlookObj = new Microsoft.Office.Interop.Outlook.Application();
  MAPIFolder Folder_Contacts;
  Folder_Contacts = (MAPIFolder)outlookObj.Session.GetDefaultFolder(OlDefaultFolders.olFolderContacts);
  OutlookItems = Folder_Contacts.Items;
  MessageBox.Show("Wykryto kontaktów: " + OutlookItems.Count.ToString());

  for (int i = 0; i < OutlookItems.Count; i++)
  {
    Microsoft.Office.Interop.Outlook.ContactItem contact = (Microsoft.Office.Interop.Outlook.ContactItem)OutlookItems[i+1];
    sNazwa = contact.FullName;
    sFirma = contact.CompanyName;
    sAdress = contact.BusinessAddressStreet;
    sMiejscowosc = contact.BusinessAddressPostalCode + " " + contact.BusinessAddressCity;
    sEmail = contact.Email1Address;
    dataGridView1.Rows.Add(sNazwa, sFirma, sAdress, sMiejscowosc, sEmail);

  }

3
投票

我已尝试使用下面提到的代码将数据从 Outlook 获取到 C# 桌面应用程序

gridview
。我有上述的 API,并获取了您系统上配置的 Outlook 电子邮件地址!代码粘贴在下面。

使用的 API 在 Outlook

2007
2003
上运行良好,但对于 Outlook
2010
,建议使用其他 API。

public partial class Form1: Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {

        fetchOutlookContacts();
    }

    public void fetchOutlookContacts()
    {
        Microsoft.Office.Interop.Outlook.Items OutlookItems;
        Microsoft.Office.Interop.Outlook.Application outlookObj;
        MAPIFolder Folder_Contacts;

        outlookObj = new Microsoft.Office.Interop.Outlook.Application();
        Folder_Contacts = (MAPIFolder)outlookObj.Session.GetDefaultFolder(OlDefaultFolders.olFolderContacts);
        OutlookItems = Folder_Contacts.Items;

        DataTable dt = new DataTable();
        dt.Columns.Add("Email Address");

        for (int i = 0; i < OutlookItems.Count; i++)
        {
            Microsoft.Office.Interop.Outlook.ContactItem contact = (Microsoft.Office.Interop.Outlook.ContactItem)OutlookItems[i + 1];
            dt.Rows.Add(new object[] { contact.Email1Address });

        }
        dataGridView1.DataSource = dt;
        dataGridView1.Show();

    }
}

2
投票

此代码在我的 C# 解决方案中运行良好。

using Outlook =Microsoft.Office.Interop.Outlook;

private void kontaktImport_Click(object sender, RoutedEventArgs e)
        {
            Outlook.Application app = new Outlook.Application();
            Outlook.NameSpace NameSpace = app.GetNamespace("MAPI");
            Outlook.MAPIFolder ContactsFolder = NameSpace.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
            Outlook.Items ContactItems = ContactsFolder.Items;
            try
            {
                foreach (Outlook.ContactItem item in ContactItems)
                {
                    String output = "";
                    output = item.FirstName + "\n";
                    output += item.LastName;
                    TestTextBox.Text = output;
                }
            }
            catch (System.Runtime.InteropServices.COMException ex)
            {
                TestTextBox.Text = ex.ToString();
            }
        }         

1
投票

有一个 Microsoft Interop 解决方案,但这会给未安装 Microsoft Office 的系统带来问题。所以我用微软交换服务解决了这个问题。现在我已经在 Asp.Net mvc 中尝试过并且工作正常。这就是您在 Asp.Net 中获取联系人的方式

public void GetContact()
    {
        
        string ewsUrl = "https://outlook.office365.com/EWS/Exchange.asmx";
        string userName = "outlookusername";
        string password = "outlookpassword";

        ExchangeService servicex = new ExchangeService();
        servicex.Url = new Uri(ewsUrl);
        servicex.UseDefaultCredentials = true;
        servicex.Credentials = new WebCredentials(userName, password);
        ContactsFolder contactsfolder = ContactsFolder.Bind(servicex, WellKnownFolderName.Contacts);
        int numItems = contactsfolder.TotalCount < 50 ? contactsfolder.TotalCount : 50;
        if (numItems == 0)
            AddContact();
        numItems = contactsfolder.TotalCount < 50 ? contactsfolder.TotalCount : 50;
        // Instantiate the item view with the number of items to retrieve from the Contacts folder.
        ItemView view = new ItemView(numItems);

        // To keep the request smaller, request only the display name property.
        view.PropertySet = new PropertySet(BasePropertySet.IdOnly, ContactSchema.DisplayName);

        // Retrieve the items in the Contacts folder that have the properties that you selected.
        FindItemsResults<Item> contactItems = servicex.FindItems(WellKnownFolderName.Contacts, view);

        // Display the list of contacts. 
        foreach (Item item in contactItems)
        {
            if (item is Contact)
            {
                Contact contact = item as Contact;
                Console.WriteLine(contact.DisplayName);
            }
        }
    }`

您只需在那里替换 Outlook 用户名密码,这将为您提供联系人。 如果没有联系人,我已调用“添加联系人”方法来添加联系人。

© www.soinside.com 2019 - 2024. All rights reserved.