1. 程式人生 > >普通java工程的resources目錄定址

普通java工程的resources目錄定址

問題:

普通java工程的src/main/resources目錄下的配置檔案如何定址

在src/main/java目錄下的程式碼中如何訪問src/main/resources目錄下的配置檔案?

 

Maven packs all the files and folders under main/resourcesinto the jar file at the the root

 

比如src/main/resources/config.xml,那麼在程式碼中直接用“config.xml”就可以訪問了。這個前提是,這是一個maven的專案。