1. package edu.fzu.ir.util;
  2.  
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.InputStreamReader;
  9. import java.io.UnsupportedEncodingException;
  10. import java.util.Properties;
  11.  
  12. import org.apache.log4j.Logger;
  13.  
  14. /**
  15. * 读取配置文件的工具类
  16. * 提供了静态读取配置文件的方法
  17. * 改配置文件是放在每个worker节点�?
  18. * worker启动时根据配置文件路径读取该配置文件
  19. * @author hasee
  20. *
  21. */
  22. public class Configuration {
  23. private static Logger logger = Logger.getLogger(Configuration.class);
  24. private static Properties properties;
  25. private Configuration() {}
  26.  
  27. /**
  28. * 通过配置文件的路径获取相关的配置,存储在properties中,worker每次启动时调用该方法
  29. * @param confPath 配置文件的路�?
  30. */
  31. public static void loadConfiguration(String confPath) {
  32. //判断properties是否是空,如果不为空表示已经加载过配置文件,不需要再加载
  33. if(properties==null) {
  34. //利用InputStreamReader指定利用utf-8编码读取properties文件
  35. //这样是为了解决配置文件中的中文乱码问�?
  36. InputStream inputStream = null;
  37. InputStreamReader isr = null;
  38. try {
  39. inputStream = new FileInputStream(new File(confPath));
  40. isr = new InputStreamReader(inputStream, "UTF-8");
  41. } catch (FileNotFoundException e) {
  42. //文件未找到时,输出错误日志,并停止系�?
  43. logger.error(e);
  44. System.exit(0);
  45. } catch (UnsupportedEncodingException e) {
  46. logger.error(e);
  47. System.exit(0);
  48. }
  49. properties = new Properties();
  50. try {
  51. //加载并存储到properties
  52. logger.info("load configuration from : "+ confPath);
  53. properties.load(isr);
  54. logger.info("load succeed!");
  55. } catch (IOException e) {
  56. logger.error(e);
  57. } finally {
  58. //关闭资源
  59. try {
  60. if(inputStream != null) {
  61. inputStream.close();
  62. }
  63. if(isr != null) {
  64. isr.close();
  65. }
  66. } catch (IOException e) {
  67. logger.error(e);
  68. }
  69. }
  70. }
  71. }
  72.  
  73. /**
  74. * 获取配置文件中某�?��配置�?若不存在返回null
  75. * @param key 配置项的key�?
  76. * @return
  77. */
  78. public static String getProperties(String key) {
  79. String s = null;
  80. if(properties != null){
  81. s = properties.getProperty(key);
  82. }
  83. return s;
  84. }
  85. }

Configuration的更多相关文章

  1. PhpStorm和WAMP配置调试参数,问题描述Error. Interpreter is not specified or invalid. Press “Fix” to edit your project configuration.

    PhpStorm和WAMP配置调试参数 问题描述: Error. Interpreter is not specified or invalid. Press “Fix” to edit your p ...

  2. Apache2.4:AH01630 client denied by server configuration

    问题说明:Apache服务总共有4个,是为了防止单点故障和负载均衡,负载均衡控制由局方的F5提供. 访问的内容在NAS存储上,现象是直接访问每个apache的服务内容都是没有问题,但是从负载地址过来的 ...

  3. Fedora 22中的Locale and Keyboard Configuration

    Introduction The system locale specifies the language settings of system services and user interface ...

  4. ABP源码分析四:Configuration

    核心模块的配置 Configuration是ABP中设计比较巧妙的地方.其通过AbpStartupConfiguration,Castle的依赖注入,Dictionary对象和扩展方法很巧妙的实现了配 ...

  5. External Configuration Store Pattern 外部配置存储模式

    Move configuration information out of the application deployment package to a centralized location. ...

  6. SCVMM中Clone虚拟机失败显示Unsupported Cluster Configuration状态

    在SCVMM进行虚拟机的Clone,虽然失败了,但是Clone出虚拟机却显示在SCVMM控制台的虚拟机的列表中,并且状态是Unsupported Cluster Configuration.无法修复, ...

  7. commons configuration管理项目的配置文件

    Commons Confifutation commons configuration可以很方便的访问配置文件和xml文件中的的内容.Commons Configuration 是为了提供对属性文件. ...

  8. Elasticsearch Configuration 中文版

    ##################### Elasticsearch Configuration Example ##################### # This file contains ...

  9. Spark 官方文档(4)——Configuration配置

    Spark可以通过三种方式配置系统: 通过SparkConf对象, 或者Java系统属性配置Spark的应用参数 通过每个节点上的conf/spark-env.sh脚本为每台机器配置环境变量 通过lo ...

  10. spring configuration 注解

    org.springframework.context.annotation @annotation.Target({ElementType.TYPE}) @annotation.Retention( ...

随机推荐

  1. Java观察者设计模式

    在java.util包中提供了Observable类和Observer接口,使用它们即可完成观察者模式. 多个观察者都在关注着价格的变化,只要价格一有变化,则所有的观察者会立即有所行动. //==== ...

  2. Android学习笔记——Handler(二)

    对比请看http://blog.sina.com.cn/s/blog_78c913e30100uqmf.html 以下代码是MainActivity.java中的代码 package com.exam ...

  3. MyEclipse项目中的java文件的图标变成空心的问题

    今天从SVN更新了一下整个工程,更新完成后发现工程的目录顺序变了,Java文件的图标也由原来实心"J"变成了空心的"J"了,网上查了一下,发现这样的问题不多,解 ...

  4. [Unity] Unity3D研究院编辑器之独立Inspector属性

    本文转自: http://www.xuanyusong.com/archives/3680雨松MOMO Unity提供了强大的Editor功能, 我们可以很轻易的在EditorGUI中绘制任意的属性. ...

  5. linux下文件结束符

    linux下文件结束符,我试过了所有的linux,发现其文件的结束符都是以0a即LF结束的,这个是操作系统规定的,windows下是\r\n符结束,希望可以帮助大家. -------------转:来 ...

  6. Java 线程Thread.Sleep详解

    我们可能经常会用到 Thread.Sleep 函数来使线程挂起一段时间.那么你有没有正确的理解这个函数的用法呢? 思考下面这两个问题: 1.假设现在是 2008-4-7 12:00:00.000,如果 ...

  7. MySQL中MAX函数与Group By一起使用的注意事项(转)

    mysql> select * from test; +----+-------+------+-------+ | id | name | age | class | +----+------ ...

  8. linux 打造man中文帮助手册

    博客转自:http://my.oschina.net/hbzhangmao/blog/354533 学IT的同学都知道, Linux是一个好东西, 但初学者往往会因为太多的命令觉得头疼, 更头疼的是所 ...

  9. PHP如何实现页面静态化

    1.file_put_contents()函数 2.fwrite()函数 3.使用PHP内置缓存机制实现页面静态化-output_buffering

  10. 再读<<基于MVC的JavaScript Web 富应用开发>>

    工作的时候粗读过这本书的几章内容,真真是囫囵吞枣~~目前手边就剩这一本,重新读才觉得先前是没看明白啊!这个作者博闻强识,对这些插件.库了解的非常多.记录下,查的资料 订阅/发布 jQuery Tiny ...