java 读取DB.properties文件方式

本文详细描述了在Tomcat环境下成功读取properties文件的方法,包括使用PropUtil工具类实例化对象并获取配置信息的过程。重点解决了资源路径问题,并提供了连接数据库的实例代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

读properties文件的时候,出现了或多或少的奇怪问题,这里把最终成功的方式描述一下。


PropUtil工具类

public class PropUtil {

	private String filePath = null;

	public PropUtil(String fileName) {
		this.filePath = getClass().getClassLoader().getResource("/").getPath();
		filePath = filePath.substring(1, filePath.length() - 8) + fileName;

		// fixed tomcat readpath problem dml@2012.9.12
		filePath = filePath.replaceAll("%20", " ");
	}

	public Properties getProp() {
		Properties prop = new Properties();
		try {
			InputStream in = new BufferedInputStream(new FileInputStream(
					filePath));
			prop.load(in);
			in.close();

		} catch (Exception err) {
			err.printStackTrace();
		}
		return prop;
	}
}

调用的时候,直接实例化这个工具类对象即可

public static Connection getConnect() {
		PropUtil pu = new PropUtil("DB.properties");
		Properties p = pu.getProp();
		Connection con = null;
		try {
			String url = p.getProperty("url");
			String Driver = p.getProperty("driver");
			String user = p.getProperty("userName");
			String pwd = p.getProperty("password");
			Class.forName(Driver);
			con = DriverManager.getConnection(url, user, pwd);
			if (con == null) {
				System.out.println("can not find con");
			}
		} catch (Exception e) {
			System.out.println("conn bad!");
			e.printStackTrace();
		}
		return con;
	}

以上是在tomcat中最终配置的方式。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值