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.

I'm trying to get the contacts details like org name, firstname, email, etc from Blackberry Address Book using the below code

I'm able to access addressbook and get contacts in Blackberry simulator but the same is not working on device.

The app is code signed and then only installed on device. I'm currently using BB Bold OS 6 version device.

private Vector getContacts() {
    Vector result = new Vector();
    try {
        BlackBerryContactList contactList = (BlackBerryContactList) PIM
                .getInstance().openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY);
        Enumeration enumx = contactList.items();
        while (enumx.hasMoreElements()) {
            BlackBerryContact c = (BlackBerryContact) enumx.nextElement();
            String[] contact = new String[2];
            if (contactList.isSupportedField(BlackBerryContact.NAME)) {
                String[] name = c.getStringArray(BlackBerryContact.NAME, 0);
                String firstName = name[Contact.NAME_GIVEN];
                String lastName = name[Contact.NAME_FAMILY];
                contact[0] = firstName + " " + lastName;
            }
            if (contactList.isSupportedField(BlackBerryContact.EMAIL)) {
                StringBuffer emails = new StringBuffer();
                int emailCount = c.countValues(BlackBerryContact.EMAIL);
                for (int i = 0; i < emailCount; i++) {
                    String email = c.getString(BlackBerryContact.EMAIL, i);
                    if (email != null) {
                        emails.append(email.trim());
                        emails.append("; ");
                    }
                }
                contact[1] = emails.toString();
            }
            result.addElement(contact);
        }
    } catch (PIMException ex) {
        ex.printStackTrace();
    }
    return result;
}
share|improve this question
You'll need to expand on "the same is not working on device." Are you getting an exception? If so, please include those details. If you aren't getting an exception, how do you know it isn't working? – Michael Donohue Dec 9 '12 at 5:16
I'm getting arrayindexout of bounds exception – Shriram A K Dec 9 '12 at 18:51
You need to work on explaining your problem to other people to get help. Where does that failure happen? i.e. which line of code throws the ArrayIndexOutOfBoundsException? – Michael Donohue Dec 9 '12 at 23:27

closed as too localized by djechlin, hims056, Alessandro Minoccheri, InfantPro'Aravind', François Wahl Dec 10 '12 at 8:49

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.