码迷,mamicode.com
首页 > 编程语言 > 详细

Java学习资料-Java最优单例模式

时间:2015-02-25 11:48:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import org.apache.log4j.Logger;
/**
 * PropertiesUtil
 * 
 * @author yangshenhui
 */
public class PropertiesUtil {
 private static Logger logger = Logger.getLogger(PropertiesUtil.class);
 private PropertiesUtil() {
 }
 private static class SingletonHolder {
  private final static PropertiesUtil INSTANCE = new PropertiesUtil();
 }
 public static PropertiesUtil getInstance() {
  return SingletonHolder.INSTANCE;
 }
 public Properties getProperties(String fileName) {
  Properties Properties = new Properties();
  InputStream inputStream = null;
  try {
   inputStream = PropertiesUtil.class.getClassLoader()
     .getResourceAsStream(fileName);
   Properties.load(inputStream);
  } catch (IOException e) {
   logger.error(e.getMessage(), e);
  } finally {
   if (inputStream != null) {
    try {
     inputStream.close();
    } catch (IOException e) {
     logger.error(e.getMessage(), e);
    }
   }
  }
  return Properties;
 }
}

Java学习资料-Java最优单例模式

标签:

原文地址:http://my.oschina.net/ysh3940/blog/379820

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!