我有" OR.properties"包中的属性文件" com.ma.config"在源文件夹" src / test / java"。我正在使用以下代码初始化属性文件,但是它给出了错误"初始化属性文件时出错"当我在詹金斯跑步但在本地通过日食工作正常。能帮助我解决这个问题:
static Properties OR;
public WebConnector(){
if(OR==null){
//initialize OR
try{
//initilalize OR
OR = new Properties();
FileInputStream fs = new FileInputStream(System.getProperty("user.dir")+"\\src\\test\\java\\com\\ma\\config\\OR.properties");
OR.load(fs);
}catch(Exception e){
System.out.println("Error in initialising propertis file");
}}}
答案 0 :(得分:0)
听起来像是类路径问题。 你能检查Jenkins错误日志吗?