我是靠谱客的博主 爱撒娇红酒,最近开发中收集的这篇文章主要介绍java 读取property文件_java读取property文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

property文件中:

url = jdbc:mysql://localhost:3306/resume

user= root

pwd = 123

java代码读取:

package com.util;

import java.io.InputStream;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.SQLException;

import java.util.Properties;

public class DBUtil {

//建立连接

public static Connection getConnection() throws Exception {

Connection conn = null;

String property=getProperty();

String[] propertys=property.split(" ");

String url = propertys[0];

String user = propertys[1];

String pwd = propertys[2];

try {

Class.forName("com.mysql.jdbc.Driver");

conn = DriverManager.getConnection(url, user, pwd);

} catch (Exception e) {

e.printStackTrace();

throw e;

}

return conn;

}

//获取property的配置文件

public static String getProperty()

{

Properties pro= new Properties();

String property="";

try

{

InputStream is = DBUtil.class.getResourceAsStream("../../config.property");

pro.load(is);

String url = pro.getProperty("url").trim();

String user = pro.getProperty("user").trim();

String pwd = pro.getProperty("pwd").trim();

property=url+" "+user+" "+pwd;

if(is!=null) is.close();

}catch(Exception e) {

System.out.println("there is error to read config file...");

e.printStackTrace();

}

return property;

}

}

最后

以上就是爱撒娇红酒为你收集整理的java 读取property文件_java读取property文件的全部内容,希望文章能够帮你解决java 读取property文件_java读取property文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部