This is very strange behavior I have noticed while developing Plugin. I have a file in the bundle that has to be loaded for wizard. I tried to load the file in eclipse using following code.

Bundle bundle = Platform.getBundle(MTPAppPlugin.getDefault()
                .getBundle().getSymbolicName());
        URL fileURL = bundle.getEntry(relativeFilePath);
        File file = new File(FileLocator.resolve(fileURL).toURI());

But this didnt worked in MyEclipse.So I used other way for my eclipse

url = new URL("platform:/plugin/"
                + MTPAppPlugin.getDefault().getBundle().getSymbolicName()
                + relativeFilePath);
        InputStream inputStream = url.openConnection().getInputStream();
        in = new BufferedReader(new InputStreamReader(inputStream));

Now I need to know is there any common way to load the file for eclipse & My Eclipse?

link|improve this question

0% accept rate
If you don't switch to a file, the first way will work as well. Once you have the URL, just turn it into an InputStream similar to your option 2. – Paul Webster Apr 28 '11 at 13:16
feedback

2 Answers

The first one seems to be correct. What was the error given in MyEclipse?

link|improve this answer
My Eclipse was unable to load the files from the bundle. – Rj71439 Mar 21 '11 at 11:31
feedback

The first one will not work if you have space in your folder path like C:\program files....

link|improve this answer
Thanks... The second way worked in both eclipse & my Eclipse. – Rj71439 Mar 28 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

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