I have a mathematical model that I'm trying to solve it by exporting Cplex library to java. Every thing was alright till I imported my full project to another computer. Cplex solved the mathematical model but now I want to see my variables excel file in my project file. I think I have written the related part of code that exports the excel solution file to my project file correctly,is there any possibility that the excel file to be imported to another location? Here is the piece of code after and before the "solve" part.
cplex.exportModel("model.lp");
cplex.setParam(IloCplex.BooleanParam.NumericalEmphasis, true);
cplex.setParam(IloCplex.Param.MIP.Display, 0);
//solve
if (cplex.solve()){
System.out.println("The min of total weighted completion times is equal to: " + cplex.getObjValue()+"\n");
cplex.writeSolution("model_solution.sol");
System.out.println("Solution status = " + cplex.getStatus());
}