Java J2EE读取配置文件
package com;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.naming.InitialContext;
import java.io.File;
import java.io.FileFilter;
import java.io.FileReader;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
/**
* 读取配置文件
*/
public class ReadProperty {
private static final Logger logger = LoggerFactory.getLogger(Globals.class);
private static String confHome = null;
//并发,线程安全的map
private static Map<String, String> confProperties = new ConcurrentHashMap<>();
private static Map<String, File> confFiles = new ConcurrentHashMap<>();
//加载成功
private static boolean loadingSuccess = true;
/**
* 加载配置文件
*/
private synchronized static void loadProperties() {
//如果没有加载成功,返回
if ( !loadingSuccess ) {
return;
}
//如果加载的文件是空的
if (confProperties.isEmpty()) {
//如果电脑环境变量中为空
if (confHome == null) {
confHome = System.getProperty("CONF_HOME");
}
//如果web.xml中没配
if (confHome == null) {
try {
InitialContext context = new InitialContext();
confHome = (String)context.lookup("java:comp/env/CONF_HOME");
} catch(Exception e) {
logger.warn("Can not find jini name {}", "java:comp/env/CONF_HOME");
}
}
//如果还是为空,就找本机路径下的ProtectionDomain/CodeSource/Location/getFile/WEB-INF/文件夹/conf
if (confHome == null) {
confHome = (new InitWebPath()).getRootPath() + "WEB-INF" + File.separator + "conf";
}
//是否是文件夹
try {
File dirFile = new File(confHome);
if(!dirFile.exists() || (!dirFile.isDirectory())){
logger.warn("Can not find home or is not directory!\n{}", confHome);
loadingSuccess = false;
return;
}
//获取所有文件后缀是.properties的文件名
File[] files = dirFile.listFiles(new FileFilter() {
@Override
public boolean accept(File file) {
String fileName = file.getName();
int pos = fileName.lastIndexOf(".properties");//最后一个匹配的 db.xml和db.xml.xml
if (pos != -1) {
confFiles.put(fileName.substring(0, pos), file);//文件名与文件关联 key value
return true;
} else {
pos = fileName.lastIndexOf(".xml");
confFiles.put(fileName.substring(0, pos), file);
return false;
}
}
}
);
//迭代文件,读取key value
for(File file : files) {
Properties fileProperties = new Properties();
fileProperties.load(new FileReader(file));
Iterator<Entry<Object, Object>> iterProp = fileProperties.entrySet().iterator();
while(iterProp.hasNext()) {
Entry<Object, Object> row = iterProp.next();
Object key = row.getKey();
Object value = row.getValue();
if (null!=key && null!=value) {
confProperties.put(key.toString(), value.toString());
}
}
}
} catch(Exception e) {
loadingSuccess = false;
}
}
}
/**
* 读取配置文件信息
* @param name key
* @return value
*/
public static String getProperty(String name) {
if (confProperties.isEmpty()) {
loadProperties();
}
return confProperties.get(name);
}
static class InitWebPath{
public String getRootPath() {
String url = InitWebPath.class.getProtectionDomain().getCodeSource().getLocation().getFile();
String filePath = "";
try {
filePath = java.net.URLDecoder.decode(url, "utf-8");
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
final String fileFlag = "file:";
if (filePath.startsWith(fileFlag)) {
filePath = filePath.substring(fileFlag.length());
}
final String applicationFlag = "WEB-INF";
return filePath.substring(0, filePath.lastIndexOf(applicationFlag));
}
}
}
Java J2EE读取配置文件的更多相关文章
- java中读取配置文件ResourceBundle和Properties两种方式比较
今天在开发的时候,需要把一些信息放到配置文件中,方便后续的修改,注意到用的是ResourceBundle读取配置文件的方式,记得之前也见过使用Properties的方式,就比较好奇这两种方式的区别,网 ...
- java web 读取配置文件两种方法
package com.tsinghua.getDataBaseConn; import java.io.IOException;import java.io.InputStream;import j ...
- java后台读取配置文件
前几天开发时遇到一个问题,在后台读取配置文件的时候无法读取属性值,于是上网查了查,现在在这分享给大家: 先附上代码吧: package com.shafei.util; import java.io. ...
- Java中读取配置文件中的内容,并将其赋值给静态变量的方法
应用场景 项目开发中某个功能需要抽取成方法写成一个工具类,提供给别人使用.写过工具类的人都知道,工具类中的方法一般都是静态方法,可以直接使用类名点方法名调用, 使用很方便,比如判断某个对象是否为空的方 ...
- 在java中读取配置文件信息
public class PropertyUtil { public static final Properties PROP = new Properties(); /** * 读取配置文件的内容( ...
- java中读取配置文件的方法
转自:http://blog.csdn.net/stypace/article/details/38414871 一.使用org.apache.commons.configuration 需要使用的是 ...
- 转载:Java项目读取配置文件时,FileNotFoundException 系统找不到指定的文件,System.getProperty("user.dir")的理解
唉,读取个文件,也就是在项目里面去获得配置文件的目录,然后,变成文件,有事没事,总是出个 FileNotFoundException 系统找不到指定的文件,气死人啦. 还有就是:System.get ...
- java中读取配置文件
若是Javaweb项目,项目运行于tomcat或其他容器时,可以使用下面方式来获取文件的输入流 1.当属性文件放在src下面时 InputStream is = Thread.currentThrea ...
- java中读取配置文件中的数据
1.先在项目中创建一个包(如:config),再创建一个配置文件(如:a.properties),添加配置信息如下:比如:name=kakaage=28 2.代码:import java.io.IOE ...
随机推荐
- WPF 数据绑定 使用Code First with Database
一.准备工作 1.开发工具 Visual Studio 2013 2.安装 Entity Framework 6 Tools for Visual Studio 2012 & 2013 来实现 ...
- 手机App安全性测试初探
目前手机App测试还是以发现bug为主,主要测试流程就是服务器接口测试,客户端功能性覆盖,以及自动化配合的性能,适配,压测等,对于App安全性测试貌似没有系统全面统一的标准和流程,其实安全性bug也可 ...
- vue中使用js动画与velocity.js
一:vue中使用js动画 根据上一篇安装animate.css之后 vue中有动画的钩子函数,@before-enter是内容由无到有的时候自动监听触发的函数,函数会接收到参数el,这样可以动态设置样 ...
- Deep learning with Python 学习笔记(2)
本节介绍基于Keras的CNN 卷积神经网络接收形状为 (image_height, image_width, image_channels)的输入张量(不包括批量维度),宽度和高度两个维度的尺寸通常 ...
- Java设计模式学习记录-适配器模式
前言 之前已经将五个创建型设计模式介绍完了,从这一篇开始介绍结构型设计模式,适配器模式就是结构型模式的一种,适配器要实现的效果是把“源”过渡到“目标”. 适配器模式 在开发过程中,使用一个已经存在的类 ...
- JavaScript的3种继承方式
JavaScript的继承方式有多种,这里列举3种,分别是原型继承.类继承以及混合继承. 1.原型继承 优点:既继承了父类的模板,又继承了父类的原型对象: 缺点:不是子类实例传参,而是需要通过父类实例 ...
- Quart2D文字图像绘制
上一个是绘制简单图形,这一篇学习绘制文字.图像 //获取画布 CGContextRef context=UIGraphicsGetCurrentContext(); //设置边框颜色 CGContex ...
- SQL SERVER 快捷键收录
1.大小写转换快捷键 Ctrl+Shift+U 转为大写 Ctrl+Shift+L 转为小写
- winform窗体 小程序【三级联动】
三级联动[省,市,区] 类似地区选择,当选的某个省份,后面的下拉框相对变成对应省份的区县 实现省市区联动关键是数据库的表,[每个省内区的AreaCode列是同样的] public Form2() { ...
- 使用Hibernate Validator来帮你做数据校验
数据校验是贯穿所有应用程序层(从表示层到持久层)的常见任务.通常在每个层中实现相同的验证逻辑,这是耗时且容易出错的.这里我们可以使用Hibernate Validator来帮助我处理这项任务.对此,H ...