Rick Sample wrote:
>Is there some way/tool that I can tell what JAR file these classes/beans
are in?
I don't know where those classes are, but you can use jar to list the
classes in a .jar file, as follows:
jar tvf <jar file>
On Unix, combine it with grep:
jar tvf <jar file> | grep sunexamples.beans
Also on Unix, to search multiple jar files for a particular string, you can
try something like:
find /usr -name \*.jar -print -exec jar tvf {} \; | egrep
'(^/|sunexamples/bean)'
This will list the names of all jar files under /usr, and any classes in the
sunexamples.bean package after it lists their jar file.
Good luck,
Larry
-----Original Message-----
From: Rick L Sample [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 17, 1999 9:00 AM
To: [EMAIL PROTECTED]
Subject: JSP 2.0 sunexamples.beans.* located in what jar file?
Is there some way/tool that I can tell what JAR file these classes/beans are
in?
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
FAQs on JSP can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html