读取 Micromax Q50 中的联系人列表

发布于 2024-11-04 14:09:23 字数 1243 浏览 0 评论 0原文

我正在使用以下代码来读取 Micromax 设备中的联系人列表。 但没有任何成功。

try {
        PIM t_pim = PIM.getInstance();

        String[] namesOfContactLists = t_pim.listPIMLists(PIM.CONTACT_LIST);

        PIMList t_pimlist = t_pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY, namesOfContactLists[0]);//namesOfContactLists[0] is the Phone List.

        Enumeration t_enumeration = t_pimlist.items();

        boolean isFormattedNameSupported = t_pimlist.isSupportedField(Contact.FORMATTED_NAME);

        while (t_enumeration.hasMoreElements()) {

            String t_contactName = "";

            Contact t_contact = (Contact) t_enumeration.nextElement();

            if (isFormattedNameSupported) {

                if (t_contact.countValues(Contact.FORMATTED_NAME) > 0) {

                    t_contactName = t_contact.getString(Contact.FORMATTED_NAME, 0);//Throws UnsupportedFieldException

                }

            }

        }
    } catch (PIMException ex) {
        ex.printStackTrace();
    }

其他选项(例如 Contact.NAME、Contact.NAME_GIVEN、Contact.NAME_FAMILY、Contact.NAME_OTHER、Contact.NAME_PREFIX、Contact.NAME_SUFFIX、Contact.NICKNAME)也会引发相同的 UnsupportedFieldException。

此代码在诺基亚和索尼爱立信设备上运行良好。但在 Micromax 上失败了。

I am using the following code to read Contact List in Micromax Device.
But without any success.

try {
        PIM t_pim = PIM.getInstance();

        String[] namesOfContactLists = t_pim.listPIMLists(PIM.CONTACT_LIST);

        PIMList t_pimlist = t_pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY, namesOfContactLists[0]);//namesOfContactLists[0] is the Phone List.

        Enumeration t_enumeration = t_pimlist.items();

        boolean isFormattedNameSupported = t_pimlist.isSupportedField(Contact.FORMATTED_NAME);

        while (t_enumeration.hasMoreElements()) {

            String t_contactName = "";

            Contact t_contact = (Contact) t_enumeration.nextElement();

            if (isFormattedNameSupported) {

                if (t_contact.countValues(Contact.FORMATTED_NAME) > 0) {

                    t_contactName = t_contact.getString(Contact.FORMATTED_NAME, 0);//Throws UnsupportedFieldException

                }

            }

        }
    } catch (PIMException ex) {
        ex.printStackTrace();
    }

Other options like Contact.NAME, Contact.NAME_GIVEN, Contact.NAME_FAMILY, Contact.NAME_OTHER, Contact.NAME_PREFIX, Contact.NAME_SUFFIX, Contact.NICKNAME also throw the same UnsupportedFieldException.

This code works fine on Nokia and Sony Ericsson devices. But fails on Micromax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-11-11 14:09:23

当你说“没有任何成功”时,你的意思是什么?到底发生了什么?如果您的意思是 FORMATTED_NAME 是联系人不支持的字段,那么这些字段是可选的。使用 PIMList.getSupportedFields() 确定您可以在每个平台上读取哪些字段。

When you say "without any success", what do you mean? What actually happens? If you mean that FORMATTED_NAME is an unsupported field for Contact, then these fields are optional. Use PIMList.getSupportedFields() to figure out which fields you can read on each platform.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文