java中new一个对象的问题

顽皮猫喵 2017-08-23 03:10:55
如图,这是种啥操作?? 还可以这么玩??

public class TestMail {
public static void main(String[] args) {
new MailSender()
.title("测试发送邮件")
.content("文本!!")
.contentType(MailContentTypeEnum.TEXT.getValue())
.targets(new ArrayList<String>(){{
add("283206322@qq.com");
}
});

}
}

直接在一个new 后面. . . . 就可以了。。。。
public class MailSender {
//邮件实体
private static MailEntity mail = new MailEntity();

public MailSender title(String title){
mail.setTitle(title);
return this;
}

public MailSender content(String content){
mail.setContent(content);
return this;
}

public MailSender contentType(String contentType){
mail.setContentType(contentType);
return this;
}

public MailSender targets(List<String> targets){
mail.setList(targets);
return this;
}

public void send() throws Exception{
if(mail.getContentType()==null){
mail.setContentType(MailContentTypeEnum.HTML.getValue());
}
if(mail.getTitle() == null || mail.getTitle().trim().length()==0){
throw new Exception("无标题");
}
if(mail.getContent()==null||mail.getContentType().trim().length()==0){
throw new Exception("无内容");
}
if(mail.getList()==null || mail.getList().size()==0){
throw new Exception("无接收者");
}

final PropertiesUtil properties = new PropertiesUtil("mail");

final Properties props = new Properties();
//smtp发送邮件需要身份验证
props.put("mail.smtp.auth","true");
//smtp服务器
props.put("mail.stmp.host",properties.getValue("mail.stmp.service"));
//设置端口号
props.put("mail.smtp.port",properties.getValue("mail.smtp.port"));
//发送邮件
props.put("mail.user",properties.getValue("mail.from.address"));
//设置发送邮件的16位STMP口令
props.put("mail.password",properties.getValue("mail.from.stmp.pwd"));
//构建授权信息,用于进行SMTP进行身份验证
Authenticator authenticator = new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
String userName = props.getProperty("mail.user");
String password = props.getProperty("mail.password");
return new PasswordAuthentication(userName,password);
}
};

Session mailSession = Session.getInstance(props,authenticator);

MimeMessage message = new MimeMessage(mailSession);

String nickName = MimeUtility.encodeText(properties.getValue("mail.from.nickname"));
InternetAddress form = new InternetAddress(nickName + "<" + props.getProperty("mail.user")+">");
message.setFrom(form);

message.setSubject(mail.getTitle());
//html发送
if(mail.getContentType().equals(MailContentTypeEnum.HTML.getValue())){
message.setContent(mail.getContent(),mail.getContentType());
}
//文本发送
else if(mail.getContentType().equals(MailContentTypeEnum.TEXT.getValue())){
message.setText(mail.getContent());
}
//发送地址
List<String> list = mail.getList();
for(int i=0;i<list.size();i++){
try{
//设置收件邮箱
InternetAddress t0 = new InternetAddress(list.get(i));
message.setRecipient(Message.RecipientType.TO,t0);
Transport.send(message);
}catch (Exception e){
continue;
}
}
}
}

这个类是这样的。 看不懂那个main方法里面的东西。。。
...全文
319 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
顽皮猫喵 2017-08-23
  • 打赏
  • 举报
回复
谢谢,我知道了,那个方法返回this没太注意。。。。以为就是普通的get,set方法
李德胜1995 2017-08-23
  • 打赏
  • 举报
回复
new MailSender() .title("测试发送邮件") .content("文本!!") .contentType(MailContentTypeEnum.TEXT.getValue()) .targets(new ArrayList<String>(){{ add("283206322@qq.com"); } }); 链式方法。。。返回值一直是MailSender。。可以连续调用,例如Hibernate的Query也是
代码转载自:https://pan.quark.cn/s/8ce4326d996e 对于在 CentOS 7 系统修改网卡配置文件后无法使设置生效的情况,经过实践验证,可以通过使用 nmcli 命令来进行调整。完成修改之后,需要重新启动虚拟机以使更改生效,这样操作流程即告完成。如果设置仍然无法生效,则表明虚拟机在启动过程所获取的 IP 地址配置并非针对 eth0,此时可以对其它网卡的配置文件进行修改或将其移除。在 CentOS 7 系统,网络配置的管理机制与早期版本存在差异,主要体现为采用了 Network Manager 服务来负责网络接口的管理。在某些情形下,尽管修改了 `/etc/sysconfig/network-scripts` 目录下的 `ifcfg-eth0` 文件,但网络配置却未能即时生效。此类问题的发生通常源于 CentOS 7 采用了不同于以往的配置读取方法。接下来将具体阐述如何借助 nmcli 命令来处理这一挑战。 以 root 用户身份登录系统并打开终端界面。nmcli 是 Network Manager 提供的命令行界面工具,它支持在命令行环境下执行网络连接的建立、编辑、查询及管理任务。针对修改 eth0 网卡配置的需求,可以遵循以下步骤进行操作: 1. 导航至 `/etc/sysconfig/network-scripts` 目录: ``` cd /etc/sysconfig/network-scripts ``` 2. 检查该目录内是否存在 `ifcfg-eth0.bak` 文件,该备份文件可能是先前调整配置时遗留下来的,若存在可能造成冲突。若发现该文件,可以选择将其删除: ``` [root@localhost netw...
代码转载自:https://pan.quark.cn/s/46fd08fb879c 网管教程 从入门到精通软件篇 ★一。★详尽的xp修复控制台指令及其应用!!! 放入xp(2000)的光盘,安装时选择R,执行修复! Windows XP(涵盖 Windows 2000)的控制台指令是在系统遭遇某些意外状况时的一种极具效用的诊断、检测以及恢复系统功能的工具。笔者确实一直期望能够将这方面的指令进行归纳,此次由老范辛苦整理了这份极具价值的秘籍。 Bootcfg bootcfg 命令用于启动配置与故障恢复(对大多数计算机而言,即 boot.ini 文件)。 带有特定参数的 bootcfg 命令仅在运用故障恢复控制台时方可使用。能够在命令行界面下运用带有不同参数的 bootcfg 命令。 用法: bootcfg /default 设定默认引导选项。 bootcfg /add 向引导清单增添 Windows 安装。 bootcfg /rebuild 重复整个 Windows 安装流程并让用户选择需添加的项目。 注意:运用 bootcfg /rebuild 之前,应先借助 bootcfg /copy 命令备份 boot.ini 文件。 bootcfg /scan 探查用于 Windows 安装的全部磁盘并展示结果。 注意:这些结果被静态存储,并用于当前会话。若在当前会话期间磁盘配置发生变动,为获取更新的探查结果,必须先重启计算机,然后再次探查磁盘。 bootcfg /list 列示引导清单已有的项目。 bootcfg /disableredirect 在启动引导程序禁用重定向。 bootcfg /redirect [ PortBaudRrate] |[ useBio...

62,621

社区成员

发帖
与我相关
我的任务
社区描述
Java 2 Standard Edition
社区管理员
  • Java SE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧