Java can';无法使用POPFetchHeaderOperation获取标题主题

Java can';无法使用POPFetchHeaderOperation获取标题主题,java,android,header,mailcore2,mailcore,Java,Android,Header,Mailcore2,Mailcore,在andriod上开发电子邮件应用程序时,我使用POPFetchHeaderOperation获取电子邮件的标题。如果电子邮件是用PC发送的,我无法获取标题的主题。当电子邮件是用手机发送时,我将获取主题。谁能告诉我为什么 我使用的mailcore2框架书如下:final POPFetchHeaderOperation POPFetchHeaderOperation=mPOPSession.fetchHeaderOperation(popMessageInfo.index());popFetchH

在andriod上开发电子邮件应用程序时,我使用POPFetchHeaderOperation获取电子邮件的标题。如果电子邮件是用PC发送的,我无法获取标题的主题。当电子邮件是用手机发送时,我将获取主题。谁能告诉我为什么

我使用的mailcore2框架书如下:final POPFetchHeaderOperation POPFetchHeaderOperation=mPOPSession.fetchHeaderOperation(popMessageInfo.index());popFetchHeaderOperation.start(new OperationCallback(){@Override public void successed(){EmailBean=new EmailBean();MessageHeader=popFetchHeaderOperation.header();bean.setFrom(header.from().mailbox());bean.setTo(header.to().get(index.mailbox());List ccAddresses=header.cc();bean.setSubject(header.subject();})