javamail单独运行main()无异常,加入web程序中调用异常

编程技术  /  houtizong 发布于 3年前   70
自己写了javamail的收邮件程序,且通过收邮件类的main方法测试成功,能收到所有邮件,但是将此类加入到web应用中后,部署到tomcat,然后通过页面请求后,也能获得message的条数,但是在转化成Part后,就java.lang.NullPointerException,异常了。
Properties props = System.getProperties(); 
  props.put("mail.store.protocol","imap");
props.put("mail.imap.host","imap.163.com");
    props.put("mail.imap.auth.plain.disable","true");
    try {
      Session mailsession=Session.getInstance(props,null);
          mailsession.setDebug(false); //是否启用debug模式
          IMAPFolder folder= null;
          IMAPStore store=null;
          store=(IMAPStore)mailsession.getStore("imap");  // 使用imap会话机制,连接服务器
          store.connect("mail.163.com","[email protected]","azc1181161");
          folder=(IMAPFolder)store.getFolder("INBOX"); //收件箱
       
folder.open(Folder.READ_WRITE); 
Message message[] = folder.getMessages();
int unreadcount=folder.getUnreadMessageCount();
int newmailcount=folder.getNewMessageCount();
int total=folder.getMessageCount();
int p=0;
MailRecive pmm = null; 
for(int i=0;i<total;i++)
{
pmm = new MailRecive((MimeMessage) message[i]); 
   // 获得邮件内容=============== 
   pmm.getMailContent((Part) message[i]); 
   pmm.setAttachPath("d:/bossinmail");  
   pmm.saveAttachMent((Part) message[i]);  
}
以上代码在类的main函数中独立运行无问题,但是部署到tomcat后,就在 pmm.getMailContent((Part) message[i]);  这句话报空指针异常了。请各位大侠帮忙解决!~谢谢
详细代码请参考
https://code.csdn.net/snippets/221501
https://code.csdn.net/snippets/221516
备注:web框架使用的是struts2

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客