ubuntu下的代码格式化工具

本文提供了一个使用Java发送邮件的示例代码,并介绍了所需的配置项。通过设置SMTP服务器及认证信息,利用`javax.mail`包中的类实现了邮件的发送过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

indent -kr -i4   SimpleMail.java 可以用,但是太简单

astyle 这个工具不错

http://astyle.sourceforge.net/

 

 

astyle --style=java --style=allman   -f  SimpleMail.java

 

发送邮件的java代码!!亲测可以用

import javax.mail.*;
import javax.mail.internet.*;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;

import java.util.Properties;

public class SimpleMail
{

    private static final String SMTP_HOST_NAME = "smtp.host.com";
    private static final String SMTP_AUTH_USER = "no-replay@xxxx.com";
    private static final String SMTP_AUTH_PWD = "password";

    public static void main(String[]args) throws Exception
    {   
        new SimpleMail().test();
    }   
    public void test() throws Exception
    {   
        Properties props = new Properties();
        props.put("mail.transport.protocol", "smtp");
        props.put("mail.smtp.host", SMTP_HOST_NAME);
        props.put("mail.smtp.auth", "true");

        Authenticator auth = new SMTPAuthenticator();
        Session mailSession = Session.getDefaultInstance(props, auth);

        // uncomment for debugging infos to stdout
        // mailSession.setDebug(true);
        Transport transport = mailSession.getTransport();

        MimeMessage message = new MimeMessage(mailSession);
        message.setContent("This is a test", "text/plain");
        message.setFrom(new InternetAddress("xxx.com"));
        message.addRecipient(Message.RecipientType.TO, new InternetAddress("12354656@qq.com"));

        transport.connect();
        transport.sendMessage(message, message.getRecipients(Message.RecipientType.TO));
        transport.close();
    }   
    private class SMTPAuthenticator extends javax.mail.Authenticator
    {   
        public PasswordAuthentication getPasswordAuthentication()
        {
            String username = SMTP_AUTH_USER;
            String password = SMTP_AUTH_PWD;
            return new PasswordAuthentication(username, password);
        }
    }
}

  

转载于:https://www.cnblogs.com/oxspirt/p/7452911.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值