javamail做用户密码找回功能出现的问题解决结果。

我做的是用户找回密码的功能 当我引入SendMail.java就出错java.lang.reflect.InvocationTargetException 解决方法是mail.jar和activation.jar没有导入

Java code
  
  
SendMail send = new SendMail(); int count = send.sand(userVO.getEmail(), " 密码找回 " ,content,path);


Java code
   
   
/* * Sendmain.java * 2007.6.19:15:07 @ in pnetp.com */ package com.util; import java.util.Date; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.activation.FileDataSource; import javax.mail.Authenticator; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.Multipart; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeMultipart; public class SendMail{ // Smtp服务IP; private String host = null ; // 发送者邮箱; private String from = null ; // 接收者邮箱; private String to = null ; // 本地附件; private String fileAttachment = null ; // 邮件主题; private String subject = null ; // 邮件内容; private String text = null ; public String getFileAttachment() { return fileAttachment; } public void setFileAttachment(String fileAttachment) { this .fileAttachment = fileAttachment; } public String getFrom() { return from; } public void setFrom(String from) { this .from = from; } public String getHost() { return host; } public void setHost(String host) { this .host = host; } public String getSubject() { return subject; } public void setSubject(String subject) { this .subject = subject; } public String getText() { return text; } public void setText(String text) { this .text = text; } public String getTo() { return to; } public void setTo(String to) { this .to = to; } public boolean sendM(){ try { // system properties java.security.Security .addProvider( new com.sun.net.ssl.internal.ssl.Provider()); final Properties props = new Properties(); props.put( " mail.transport.protocol " , " smtp " ); props.put( " mail.smtp.starttls.enable " , " true " ); props.put( " mail.smtp.host " , host); props.put( " mail.smtp.port " , " 465 " ); props.put( " mail.smtp.timeout " , " 25000 " ); props.put( " mail.smtp.auth " , " true " ); props.put( " mail.smtp.socketFactory.class " , " javax.net.ssl.SSLSocketFactory " ); props.put( " mail.smtp.socketFactory.fallback " , " false " ); // 获取 session Session sendMailSession = Session.getInstance(props, new Authenticator() { public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication( " jilinchuangxin@gmail.com " , " sinew2009 " ); } }); // 声名 message MimeMessage message = new MimeMessage(sendMailSession); message.setFrom( new InternetAddress(from)); message.addRecipient( Message.RecipientType.TO, new InternetAddress(to)); message.setSubject(subject); message.setSentDate( new Date()); // 建立 message part MimeBodyPart messageBodyPart = new MimeBodyPart(); // 内容; messageBodyPart.setText(text); Multipart multipart = new MimeMultipart(); multipart.addBodyPart(messageBodyPart); // 附件; messageBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(fileAttachment); messageBodyPart.setDataHandler( new DataHandler(source)); messageBodyPart.setFileName(fileAttachment); multipart.addBodyPart(messageBodyPart); message.setContent(multipart); // 发送邮件; Transport.send(message); return true ; } catch (MessagingException m){ m.printStackTrace(); return false ; } } public int sand(String to,String title,String text,String fujian){ SendMail sm = new SendMail(); sm.setFileAttachment(fujian); // 本地附件; sm.setFrom( " jilinchuangxin@gmail.com " ); // 发送者邮箱; sm.setTo(to); // 接收者邮箱; sm.setHost( " smtp.gmail.com " ); // Smtp服务IP; sm.setSubject(title); // 邮件主题 sm.setText(text); // 邮件内容 int i =- 1 ; if (sm.sendM()){ i = 1 ; } else { i = 2 ; } return i; } }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值