I use the following code to call the route:
String url= "\"C:\users\Jose\Documents\video\"";
ProcessBuilder p = ProcessBuilder();
p.command("cmd.exe","\c",url);
NOTE: this code works perfectly for me, the file address is either video or a program, but I want to place a relative path. I mean I want my program to take it to another machine keep opening the files.
How do I open the address when placing my program on another machine?