public static String getEmailInfo(String proname){
String url = "";
InputStream in=null;
try {
Properties prop = new Properties();
in = Thread.currentThread().getContextClassLoader().getResourceAsStream("email.properties");
prop.load(in);
url = prop.getProperty(proname);
} catch (Exception e) {
e.printStackTrace();
throw new ExceptionInInitializerError();
}finally{
if(in!=null)
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return url.trim();
}
本文介绍了一种使用Java从配置文件(email.properties)中读取邮件相关信息的方法。通过加载配置文件并获取指定属性值来实现电子邮件配置信息的读取。
3707

被折叠的 条评论
为什么被折叠?



