博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
程序找不到properties文件
阅读量:5346 次
发布时间:2019-06-15

本文共 1034 字,大约阅读时间需要 3 分钟。

程序通过读取配置spark.properties文件获取相关属性信息,文件所在目录resources下

 

 执行程序报错如下:

java.io.FileNotFoundException: spark.properties (系统找不到指定的文件。)

at java.io.FileInputStream.open0(Native Method)

at java.io.FileInputStream.open(FileInputStream.java:195)

at java.io.FileInputStream.<init>(FileInputStream.java:138)

at java.io.FileInputStream.<init>(FileInputStream.java:93)

at com.cnpc.common.LoadProperties.load(LoadProperties.scala:13)

at com.cnpc.test$.main(test.scala:11)

at com.cnpc.test.main(test.scala)

 

 程序代码

classLoadProperties {

  def load(propertiesFile:String)={
    val config =
      try {
        val prop = new Properties()
         prop.load(new FileInputStream(propertiesFile))
        prop
      } catch {
        case e: Exception =>
          e.printStackTrace()
          sys.exit(1)
      }
    config
  }
}

 

解决办法

替换上如程序中文件读取部分

 

//        解决办法1

val path =

Thread.currentThread().getContextClassLoader.getResource(propertiesFile).getPath

       prop.load(new FileInputStream(path))
//        解决方法2
prop.load(new FileInputStream(getClass.getClassLoader.getResource(propertiesFile).getFile()))

 

转载于:https://www.cnblogs.com/OS-BigData/p/8526914.html

你可能感兴趣的文章
mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
查看>>
分层图最短路【bzoj2763】: [JLOI2011]飞行路线
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
bzoj1048 [HAOI2007]分割矩阵
查看>>
Java中的编码
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>
洛谷P1005 矩阵取数游戏
查看>>
在Silverlight中使用HierarchicalDataTemplate为TreeView实现递归树状结构
查看>>
无线通信基础(一):无线网络演进
查看>>
如何在工作中快速成长?阿里资深架构师给工程师的10个简单技巧
查看>>
WebSocket 时时双向数据,前后端(聊天室)
查看>>
关于python中带下划线的变量和函数 的意义
查看>>
linux清空日志文件内容 (转)
查看>>
安卓第十三天笔记-服务(Service)
查看>>
Servlet接收JSP参数乱码问题解决办法
查看>>
Ajax : load()
查看>>
MySQL-EXPLAIN执行计划Extra解释
查看>>