[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.gef] find jar file


Hi,

In my plugin directory, I have tow jars ,one is mypluin.jar ,another is

support.jar . I want to visit the support.jar from a java file which is in

myplugin.jar, my code likes below :

...
InputStream is = null ;
is = ResourcesPlugin.class.getResourceAsStream("support.jar");
jis = new JarInputStream(is);
..........


but the is is null.

           would you please tell me how to do it ?


Thanks in advance !