Maison  >  Article  >  Java  >  Explication détaillée de la façon dont java jsp struts2 implémente la fonction d'envoi d'e-mails (photo)

Explication détaillée de la façon dont java jsp struts2 implémente la fonction d'envoi d'e-mails (photo)

黄舟
黄舟original
2017-03-16 10:12:381150parcourir

Cet article présente principalement la fonction d'envoi d'e-mails en java jsp struts2, qui a une certaine valeur de référence. Les amis intéressés peuvent s'y référer

Le résumé suivant est le 23/03/2016. J'ai rencontré un module fonctionnel lors de la création d'un site Web. Je vais maintenant déplacer le résumé de Weizhi Notes vers CSDN et le partager avec tout le monde. Les corrections sont les bienvenues.

Explication détaillée de la façon dont java jsp struts2 implémente la fonction d'envoi d'e-mails (photo)Explication détaillée de la façon dont java jsp struts2 implémente la fonction d'envoi d'e-mails (photo)

0.Préparation

0.1 Créer un premier Pour le projet web, ajoutez le package de développement struts2

0.2 Vous devez importer deux packages jar supplémentaires, mail.jar et activation.jar. Vous pouvez les télécharger en ligne, il y en a beaucoup ! Voici le processus détaillé !

Page 1.index.jsp


<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<html>
 <head>

  <title>My JSP &#39;index.jsp&#39; starting page</title>
    <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">  
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
 </head>
 <body>
  <s:form action="sendTextMail" namespace="/mail">
    <s:textfield name="to" label="收件人邮箱:"></s:textfield>
    <s:textfield name="subject" label="主题"></s:textfield>
    <s:textarea name="content" label="内容" rows="5"></s:textarea>
    <s:submit value="发送"></s:submit>
  </s:form>
 </body>
</html>

2. Classe SendTestAction.java


package com.phone.action;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletResponse;
import com.opensymphony.xwork2.ActionSupport;
import com.phone.util.MailSenderInfo;
import com.phone.util.SimpleMailSender;

public class SendTestAction extends ActionSupport {
  private static final long serialVersionUID = 1L;
  private String to;
  private String qq;
  private String password;
  private String subject;
  private String content;

  public String getTo() {
    return to;
  }

  public void setTo(String to) {
    this.to = to;
  }
  public String getQq() {
    return qq;
  }

  public void setQq(String qq) {
    this.qq = qq;
  }

  public String getPassword() {
    return password;
  }

  public void setPassword(String password) {
    this.password = password;
  }

  public String getSubject() {
    return subject;
  }

  public void setSubject(String subject) {
    this.subject = subject;
  }

  public String getContent() {
    return content;
  }

  public void setContent(String content) {
    this.content = content;
  }

  @Override
  public String execute() throws Exception {
    MailSenderInfo mailInfo = new MailSenderInfo();
    mailInfo.setMailServerHost("smtp.163.com");
    mailInfo.setMailServerPort("25");
    mailInfo.setValidate(true);
    mailInfo.setFromAddress("m15504506083@163.com");//自己邮箱
    mailInfo.setToAddress(to);//目标邮箱
    mailInfo.setUserName("m15504506083@163.com");//自己邮箱
    //需要开启此邮箱的POP3/SMTP/IMAP服务,具体设置进入邮箱以后在“设置”里进行开启
    mailInfo.setPassword("syfhhd52");//自己邮箱密码
    //System.out.println("password="+password);
    mailInfo.setSubject(subject);
    mailInfo.setContent(content);

    boolean isSend = SimpleMailSender.sendTextMail(mailInfo);

    /*HttpServletResponse response;
    PrintWriter out = response.getWriter();*/

    if(isSend){
      return SUCCESS;
      //return out.write("<script>alert(&#39;发送成功!&#39;);history.back();</script>");

    }
    addActionError("发送失败!");
    return INPUT;
  }
}

3.3 classes qui implémentent principalement l'envoi d'e-mails
3.1 MailSenderInfo.java – Classe d'entité de messagerie


3.2 MyAuthenticator.java – requis pour l'authentification
package com.phone.util;

import java.util.Properties;

public class MailSenderInfo {
  //发送邮件服务器IP
  private String mailServerHost ;
  //发送邮件服务器端口
  private String mailServerPort = "25";
  //邮件发送地址
  private String fromAddress;
  //邮件接受者地址
  private String toAddress;
  //发送邮件服务器的登录用户名
  private String userName;
  //发送邮件服务器的登录密码
  private String password;
  //是否需要身份验证
  private boolean validate = false;
  //邮件主题
  private String subject;
  //邮件的文本内容
  private String content;
  //邮件附件的文件名
  private String[] attachFileNames;
  //发送人的邮件信息,在创建Session是使用
  public Properties getProperties(){
    Properties p = new Properties();
    p.put("mail.smtp.host", this.mailServerHost);
    p.put("mail.smtp.port", this.mailServerPort);
    p.put("mail.smtp.auth", validate ? "true" : "false");
    return p;
  }
  public String getMailServerHost() {
    return mailServerHost;
  }
  public void setMailServerHost(String mailServerHost) {
    this.mailServerHost = mailServerHost;
  }
  public String getMailServerPort() {
    return mailServerPort;
  }
  public void setMailServerPort(String mailServerPort) {
    this.mailServerPort = mailServerPort;
  }
  public String getFromAddress() {
    return fromAddress;
  }
  public void setFromAddress(String fromAddress) {
    this.fromAddress = fromAddress;
  }
  public String getToAddress() {
    return toAddress;
  }
  public void setToAddress(String toAddress) {
    this.toAddress = toAddress;
  }
  public String getUserName() {
    return userName;
  }
  public void setUserName(String userName) {
    this.userName = userName;
  }
  public String getPassword() {
    return password;
  }
  public void setPassword(String password) {
    this.password = password;
  }
  public boolean isValidate() {
    return validate;
  }
  public void setValidate(boolean validate) {
    this.validate = validate;
  }
  public String getSubject() {
    return subject;
  }
  public void setSubject(String subject) {
    this.subject = subject;
  }
  public String getContent() {
    return content;
  }
  public void setContent(String content) {
    this.content = content;
  }
  public String[] getAttachFileNames() {
    return attachFileNames;
  }
  public void setAttachFileNames(String[] attachFileNames) {
    this.attachFileNames = attachFileNames;
  } 
}


3.3 SimpleMailSender.java – Créer et envoyer du courrier
package com.phone.util;

import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;

public class MyAuthenticator extends Authenticator{
  private String userName;
  private String password;


  public MyAuthenticator() {}

  public MyAuthenticator(String userName, String password) {
    this.userName = userName;
    this.password = password;
  }

  @Override
  protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(userName, password);
  }

}


package com.phone.util;
import java.util.Date;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
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 SimpleMailSender {
  // 发送文本格式的邮件
  public static boolean sendTextMail(MailSenderInfo mailInfo) {

    MyAuthenticator authenticator = null;
    Properties properties = mailInfo.getProperties();
    // 如果需要身份认证,则创建一个密码验证器
    if (mailInfo.isValidate()) {
      authenticator = new MyAuthenticator(mailInfo.getUserName(),
          mailInfo.getPassword());
    }
    // 根据发件人的服务器信息和发件人用户名和密码构造一个发送邮件的session
    Session sendMailSession = Session.getDefaultInstance(properties,
        authenticator);
    try {
      // 根据session创建一个邮件消息
      Message mailMessage = new MimeMessage(sendMailSession);
      // 创建邮件发送者地址
      Address from = new InternetAddress(mailInfo.getFromAddress());
      // 设置邮件消息的发送者
      mailMessage.setFrom(from);
      // 创建邮件的接收者地址,并设置到邮件消息中
      Address to = new InternetAddress(mailInfo.getToAddress());
      mailMessage.setRecipient(Message.RecipientType.TO, to);
      // 设置邮件消息的主题
      mailMessage.setSubject(mailInfo.getSubject());
      // 设置邮件消息发送的时间
      mailMessage.setSentDate(new Date());
      // 设置邮件消息的主要内容
      String mailContent = mailInfo.getContent();
      mailMessage.setText(mailContent);
      // 发送邮件
      Transport.send(mailMessage);
      return true;
    } catch (Exception e) {
      e.printStackTrace();
    }

    return false;
  }

  // 发送HTML格式的邮件
  public static boolean sendHtmlMail(MailSenderInfo mailInfo) {
    // 判断是否需要身份认证
    MyAuthenticator authenticator = null;
    Properties pro = mailInfo.getProperties();
    // 如果需要身份认证,则创建一个密码验证器
    if (mailInfo.isValidate()) {
      authenticator = new MyAuthenticator(mailInfo.getUserName(),
          mailInfo.getPassword());
    }
    // 根据邮件会话属性和密码验证器构造一个发送邮件的session
    Session sendMailSession = Session.getInstance(pro, authenticator);
    try {
      // 根据session创建一个邮件消息
      Message mailMessage = new MimeMessage(sendMailSession);
      // 创建邮件发送者地址
      Address from = new InternetAddress(mailInfo.getFromAddress());
      // 设置邮件消息的发送者
      mailMessage.setFrom(from);
      // 创建邮件的接收者地址,并设置到邮件消息中
      Address to = new InternetAddress(mailInfo.getToAddress());
      // Message.RecipientType.TO属性表示接收者的类型为TO
      mailMessage.setRecipient(Message.RecipientType.TO, to);
      // 设置邮件消息的主题
      mailMessage.setSubject(mailInfo.getSubject());
      // 设置邮件消息发送的时间
      mailMessage.setSentDate(new Date());
      // MiniMultipart类是一个容器类,包含MimeBodyPart类型的对象
      Multipart mainPart = new MimeMultipart();
      // 创建一个包含HTML内容的MimeBodyPart
      BodyPart html = new MimeBodyPart();
      // 设置HTML内容
      html.setContent(mailInfo.getContent(), "text/html;charset=utf-8");
      mainPart.addBodyPart(html);
      // 将MiniMultipart对象设置为邮件内容
      mailMessage.setContent(mainPart);
      // 发送邮件
      Transport.send(mailMessage);
      return true;
    } catch (MessagingException ex) {
      ex.printStackTrace();
    }
    return false;
  }
}

4. struts.xmlConfiguration


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
 <!-- 设置浏览器不缓存 -->
  <constant name="struts.serve.static.browserCache" value="false"></constant>
  <!-- 修改XML后不重启自动加载 -->
  <constant name="struts.configuration.xml.reload" value="true"></constant>
  <!-- 打印更详细的错误信息 -->
  <constant name="struts.devMode" value="true"></constant>
  <package name="mail" namespace="/mail" extends="struts-default">
    <action name="sendTextMail" class="com.phone.action.SendTestAction">
      <result name="success">/success.jsp</result>
      <result name="input">/index.jsp</result>
    </action>
  </package>
</struts>
Remarque :


L'adresse e-mail utilisée pour vous connecter doit avoir le service POP3 activé/SMTP/IMAP, connectez-vous à votre e-mail et cliquez sur « Paramètres » pour l'activer.


Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn