1. 程式人生 > >idea中spark項目Scala語言讀取properties文件

idea中spark項目Scala語言讀取properties文件

module 技術分享 clas 點擊 ade file asstream -1 str

1.將文件放入resources目錄下面,將文件設置成resources

file->Project Structure->Modules

選擇文件,然後點擊resources

技術分享

2.在類中加入代碼

val properties = new Properties()
val in = this.getClass().getClassLoader().getResourceAsStream("my.properties");
properties.load(in)

idea中spark項目Scala語言讀取properties文件