I have created an eclipse plugin and I wanted to deploy during eclipse runtime. I have below package structure.

com.myplugin
  |
   ---resources
       |
        ---server.bat

As part of the plugin job, "server.bat" file should be executed.

I packaged the plugin as .jar file including resouces folder in the binary and placed in to the eclipse "plugins" folder.

Plugin took effect and it does work fine, but I have a problem while executing the "server.bat" file, which is inside the jar that I generated. The error message says:

"Windows cannot find "resources\server.bat" make sure you typed name correctly and try again"

I tried with relative paths and absolute paths, but it didnt work.

Here is the code doing that work:

URL url = Activator.getDefault().getBundle().getEntry("/resources/server.bat");

String fileURL = FileLocator.toFileURL(url).toString();

String commandLine = "cmd.exe /c start " +fileURL;

Process process= Runtime.getRuntime().exec(commandLine);

I got the "fileURL" output:

file:/D:/Program Files/IBM/SDP/configuration/org.eclipse.osgi/bundles/2392/1/.cp/resources/server.bat

I am not sure this is correct.

Hope this is clear enough to answer the question.

Alternatively, please suggest some other way, such as creating features to deploy the plugin with folder structure. I haven't tried this option yet.

link|improve this question

20% accept rate
feedback

3 Answers

Your code seems ok. Note that:

  1. You need to convert your fileURL to file path (i.e. remove "file:/" prefix). This is hugely platform-dependent - try to rely on org.eclipse.core.runtime.IPath and java.io.Path (I don't remember proper code, sorry)
  2. You need to escape the path as it contains space character.
link|improve this answer
feedback

I made it worked using ProcessBuilder. Below is the code snippet..

URL url = Platform.getBundle(Activator.PLUGIN_ID).getEntry("resources/server.bat");
String fileURL = FileLocator.toFileURL(url).toString();
ProcessBuilder pb = new ProcessBuilder("cmd.exe","/c",fileURL); 
pb.redirectErrorStream(true);
Process p = pb.start();
p.destroy();

Ofcourse, i extracted the jar and put that directory to plugins folder of eclipse.

link|improve this answer
feedback

I have had a similar problem when i export my plugin. I had to refer an exe file stored in my plugin jar file. When the plugin was exported i can not access the zipped file, while it is accessible when i develop the plugin cause eclipse looks for the file in my "development folder". To solve the problem i created a plugin feature and in the "plugins" tab of feature.xml i checked the option

Unpack the plug-in archive after the installation.

for the plugin which contains the exe file. Using this option you will find your plugin files in a folder under the eclipse plugin folder and you will be able to access them as regular files.

For example

    Bundle bundle = <get a bundle of your plugin>;
    URL url = FileLocator.find(bundle, new Path(<relative path from plugin root to your file>), null);
    try {
        url = FileLocator.resolve(url);
    } catch (IOException e) {
        e.printStackTrace();
        return false;
    }

Otherwise i think you should decompress your jar.

Hope this help.

EDIT

As i said you can create a feature project(for an example look here) and when you add your plugins, check the option "Unpack the plug-in archive after the installation." Eclipse will do the work for you and you will find your plugin unzipped in the eclipse plugin folder. This solved the problem for me.

link|improve this answer
I too had the same problem like you. I have to access the .bat file to execute, which is inside the generated plugin .jar. I didnt find any solution, but i decompressed the plugin .jar into a folder and placed it in "/plugins" directory and it worked. you can also try the same... or if you know the way, please post.. – Sebastian Apr 14 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.