Java解析属性配置文件并给占位符传参

来源:互联网 发布:最火淘宝店铺 编辑:程序博客网 时间:2024/06/05 23:40
//注册功能
public void register(User user){
//补齐数据
user.setUid(CommonUtils.uuid());
user.setStatus(false);
user.setActivationCode(CommonUtils.uuid() + CommonUtils.uuid());
try {
userDao.save(user);
} catch (Exception e) {
throw new RuntimeException();
}
//发送邮件
//加载配置文件
Properties properties = new Properties();
try {
properties.load(this.getClass().getClassLoader().getResourceAsStream("email_template.properties"));
} catch (IOException e1) {
throw new RuntimeException();
}
String host = properties.getProperty("host");
String username = properties.getProperty("username");
String password = properties.getProperty("password");


String from = properties.getProperty("from");
String to = user.getEmail();
String subject = properties.getProperty("subject");
//把占位符用后面的参数替换,后面参数可变

String content = MessageFormat.format(properties.getProperty("content"), user.getActivationCode());

//发送邮件3步曲

Session session = MailUtils.createSession(host, username, password);

Mail mail = new Mail(from, to, subject, content);
try {
MailUtils.send(session, mail);
} catch (Exception e) {
throw new RuntimeException();
}
}
原创粉丝点击