java讀取配置檔案終結

2021-09-02 07:44:50 字數 533 閱讀 4021

配置檔案在包路徑下面

使用類載入器讀取配置檔案**如下:

這是使用getclassloader方法在包路徑的前面不需要加/

inputstream resource = jdbcutils.

class

.getclassloader()

.getresourceasstream

("tencent/utils/druid.properties"

);

一下是不是用類載入器的**: 需要在前面加/

inputstream resource = jdbcutils.

class

.getresourceasstream

("/tencent/utils/druid.properties"

);

java 讀取配置檔案

前幾天因為配置檔案的事,線上的job掛掉了,使用的是spring載入配置檔案方式。spring配置如下 test.properties api test.properties decryptpropertyplaceholderconfigurer類如下所示。public class decrypt...

java讀取配置檔案

現今的程式都要求能夠讀寫配置檔案,使得程式的配置資訊能夠很方便地修改。讀取配置檔案通常使用property檔案,下面列舉了從hadoop的hdfs和本地的檔案系統讀取配置的例子。話不多說,上 讀取hdfs配置檔案 public static properties getpropertiesfromh...

java讀取配置檔案property

properties pro new properties try catch filenotfoundexception e catch ioexception e propertynames 返回屬性列表中所有鍵的列舉 enumeration enu2 pro.propertynames whi...