scala代码是:
val sourcePath = this.getClass.getResource("/stopwords.dic").getPath
val stopwordsFile = Source.fromFile(sourcePath,"UTF-8")
打包以后的jar中有stopwords.dic这个文件
路径也是对的
但是还是报错了:
Caused by: java.io.FileNotFoundException: file:/Users/laiyinan/Desktop/cc_core/out/artifacts/cc/cc_core.jar!/stopwords.dic (No such file or directory)
求解!谢谢!