如何将bin文件添加到config.properties

时间:2017-07-17 22:31:05

标签: java maven

我是Java的新手。我需要加载带有文件(x.bin)的模型,我应该把它放在config.properties那样的

PATH_TO_MODEL_FILE=/home/prog/workspace/My_Project/x.bin

我试着写

 1   Map conf;
 2   String filepath=(String) conf.get("PATH_TO_MODEL_FILE");
 3   jft.load(filepath); // this line for loading the data from .bin 
       //file and it take string means the path of the file 

但获得了model file cannot be opening for loading

文件(x.bin)存在于项目的文件夹中,我应该在使用.jar之后使用mvn package文件,但是当我打包文件时我没有找到它所以我需要让项目以正确的方式读取它,除了直接写文件的路径 另一件事 我有两个文件,除了model.bin。第一个是data.txt,第二个是result.txt。那些傻瓜与model.bin的路径相同。我在config.properties中放置了路径,然后在代码中使用它们。我在分布式模式下的代码读取除了model.bin之外的两个fiels 我尝试了在jar文件中添加model.bin的解决方案,我已经做了但是错误仍然是

0 个答案:

没有答案