在java代碼中取出linux中export的變量;讀取系統現有的property,添加或覆蓋...

下面代碼最大的做用是將配置與程序自己分離,這樣一樣一份jar包能夠自由分發到開發,測試,生產環境。

a.在java代碼中取出linux中export的變量 java

在linux export一個變量,在java中讀取這個變量,並以二進制形式load property文件。 linux

in linux:
export CONFIG_DIR=$HOMEDIR/Properties
in java:

 假設傳入的參數fileName是config.properties,下面的代碼會將linux腳本中export的變量CONFIG_DIR以 shell

System.getenv(CONFIG_DIR);的方式讀取出來,得到配置文件所在的目錄,接下來將properties文件以二進制 測試

輸入流的方式加載到property中,之後就能夠從property得到屬性了。 spa

linux中所export的變量會變成java代碼運行所在進程的系統變量

public LoadConfiguration(String fileName){
    ConfigurationDir = System.getenv("CONFIG_DIR");
    if ("".equalsIgnoreCase(ConfigurationDir.trim())){
    logger.error("CONFIG_DIR hasn't been set correct!");
    return;
    }
        propertie = new Properties();
        try {
        if (ConfigurationDir.indexOf(ConfigurationDir.length()-1) != '/'){
        ConfigurationDir = ConfigurationDir + "/";
        }
            inputFile = new FileInputStream(ConfigurationDir+fileName);
            propertie.load(inputFile);
            inputFile.close();
        } catch (FileNotFoundException ex){
            System.out.println("Read Properties File --->Failure! Reason: File Path Error or File not exist! Name:" + ConfigurationDir+"/"+fileName);
            ex.printStackTrace();
        } catch (IOException ex){
            System.out.println("Load Configuration File--->Failure! Name:" + ConfigurationDir+"/"+fileName);
            ex.printStackTrace();
        }
    }

b.讀取系統現有的property,添加或覆蓋配置,而後再設置回去做爲系統變量。
Properties p = new Properties(System.getProperties());
    p.put("com.sun.media.jai.disableMediaLib", "true");
    System.setProperties(p);
相關文章
相關標籤/搜索