[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools.gef] find jar file
|
- From: penzhan8451@xxxxxxxxxxxx (smallfish)
- Date: Mon, 21 Mar 2005 11:10:11 +0000 (UTC)
- Newsgroups: eclipse.tools.gef
- Organization: not organized
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
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 !