this sort of problem is bugging me already for a while, so I was curious how your approaches are to handle the following situation:
Imagine I have two different eclipse projects in same workspace called ProjectA and ProjectB. ProjectB contains a .exe-file within its root, which is called from ProjectA the following way:
Process p = Runtime.getRuntime().exec( "../ProjectB/ProjectB.exe" );
The problem now is, that after deployment the structure slightly changes: ProjectA is now a .jar. Next to that jar is now a folder with ProjectB, which contains ProjectB with its .exe, .jars and so on. Now the proper call would have to look like the following:
Process p = Runtime.getRuntime().exec( "ProjectB/ProjectB.exe" );
Since I need these structures to stay like they are, and I dont want two different .exec calls within my application for each case I tried several things to work around this situation:
1) Adding ProjectB as ClassFolder to ProjectA and letting the ContextClassLoader figuring out, where to find ProjectB.exe like this:
URL url= Thread.currentThread().getContextClassLoader().getResource( "ProjectB.exe" );
file = new File( url.toURI() );
Process p = Runtime.getRuntime().exec( file.getAbsolutePath() );
This solution worked perfectly fine until I tried to deploy my application on a network drive.
Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: URI has an authority component
at java.io.File.<init>(Unknown Source)
2) Since I won`t be allowed to create a network drive for each client, I tried to work around this problem and did the following:
URL url= Thread.currentThread().getContextClassLoader().getResource( "ProjectB.exe" );
File file = new File( url.getFile() );
Process p = Runtime.getRuntime().exec( file.getAbsolutePath() );
This seemed promissing, but unfortunatly just as long as my path stayed without dashes(" "), since this appraoch seemed to convert every dash into "%20", which the runtimeexecutor doesnt really seem to like. Of course I could replace every "%20" into " " afterwards, but this seems kinda hacky to me.
Another requirement is, that both application have to run in a different JVM, which is why I call the .exe-file by Runtimeexecution. So my final question is: Is there any way to get the ProjectB calls clean without any workarounds?
greets, ymene