Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way I can read a contacts number using the PIM API. I'm using the code below and it's just returning the name. I want the code to return the number only from a contact.

pim = PIM.getInstance();
    ContactsList.setModel(new DefaultListModel());
    try {
        String[] pimListNames = pim.listPIMLists(PIM.CONTACT_LIST);
        for (int i = 0; i < pimListNames.length; ++i) {
            ContactList cl = (ContactList) pim.openPIMList(
                    PIM.CONTACT_LIST, PIM.READ_ONLY, pimListNames[i]);
            Enumeration items = cl.items();
            while (items.hasMoreElements()) {
                Contact c = (Contact) items.nextElement();
                ContactsList.addItem(c.getString(Contact.FORMATTED_NAME, 0));
            }
        }
    } catch (PIMException ex) {
        WittyClassObject.showAlert("error", ex.toString());
    }
share|improve this question

1 Answer

up vote 0 down vote accepted

Have you tried to use

c.getString(Contact.TEL, 0) // instead of c.getString(Contact.FORMATTED_NAME, 0) ?
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.