美文网首页大数据开发
Scala封装获取读取配置文件类

Scala封装获取读取配置文件类

作者: 晨冉1688 | 来源:发表于2020-05-01 11:56 被阅读0次

    Scala封装获取读取配置文件类

    object GetPropertiesUtils {
    
      def getProperties(fileName:String,key:String)={
    
        val prop = new Properties()
        val inputStream = GetPropertiesUtils.getClass.getClassLoader.getResourceAsStream(fileName)
        prop.load(inputStream)
        val value = prop.get(key)
        value
      }
    
    }
    

    相关文章

      网友评论

        本文标题:Scala封装获取读取配置文件类

        本文链接:https://www.haomeiwen.com/subject/zonfghtx.html