Re: [jug-discussion] So which jar is it???

2003-01-10 Thread Erik Hatcher
JWhich: http://www.javaworld.com/javaworld/javatips/jw-javatip105.html On Friday, January 10, 2003, at 01:07 PM, Mike Oliver wrote: So how many of you have “borrowed” some code from a mail list or web site only to get a reference to a package you can’t find?   Or even the simplest java.*

Re: [jug-discussion] So which jar is it???

2003-01-10 Thread Thomas Hicks
Nice, but note this doesn't quite seem to solve the problem Mike described: this tells which JAR file IN THE CLASSPATH will provide the required class, not which JAR file on your disk contains some desired class. -tom At 01:16 PM 1/10/2003 -0500, you wrote: JWhich: http://www.jav

Re: [jug-discussion] So which jar is it???

2003-01-10 Thread Erik Hatcher
You're the Unix guru... :) I suspect it'd be a one-liner to do something with 'find' and 'setenv CLASSPATH' right? Sorry for not answering the question... oops. On Friday, January 10, 2003, at 01:19 PM, Thomas Hicks wrote: Nice, but note this doesn't quite seem to solve the problem Mike

Re: [jug-discussion] So which jar is it???

2003-01-10 Thread Thomas Hicks
At 01:24 PM 1/10/2003 -0500, you wrote: You're the Unix guru... :) I suspect it'd be a one-liner to do something with 'find' and 'setenv CLASSPATH' right? Sorry for not answering the question... oops. Wow...that sounds like a brute force approach. :) This got me thinking though, just how m

Re: [jug-discussion] So which jar is it???

2003-01-10 Thread Erik Hatcher
Also, you could use unzip and grep. I do this sometimes to check to make sure something I intended to be in a .jar/.war/.ear/.zip file is really there: unzip -v something.jar | grep security Sprinkle a little Unix magic to loop over all .jar files in the filesystem and voila. :) On Friday,

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Mike Oliver
it or use it. Michael Oliver AppsAsPeers LLC 7391 S. Bullrider Ave. Tucson, AZ 85747 Phone:(520)574-1150 Fax:(520)844-1036 -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 11:52 AM To: [EMAIL PROTECTED] Subject: Re: [jug-discussion] So which

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Jon Thomas
Is all this effort easier than writing it yourself? -Original Message- From: Mike Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 12:26 PM To: [EMAIL PROTECTED] Subject: RE: [jug-discussion] So which jar is it??? My thinking is to build an Eclipse Plugin that could

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Mike Oliver
0)844-1036 -Original Message- From: Jon Thomas [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 12:50 PM To: '[EMAIL PROTECTED]' Subject: RE: [jug-discussion] So which jar is it??? Is all this effort easier than writing it yourself? -Original Message- From: Mike O

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Jon Thomas
Sorry, just teasing -Original Message- From: Mike Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 1:05 PM To: [EMAIL PROTECTED] Subject: RE: [jug-discussion] So which jar is it??? Well Jon, that's kind of snippy, but before I went ahead and wrote it myself, I thou

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Mike Oliver
ailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 1:06 PM To: '[EMAIL PROTECTED]' Subject: RE: [jug-discussion] So which jar is it??? Sorry, just teasing -Original Message- From: Mike Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 1:05 PM To: [EMAIL PROTECT

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Jon Thomas
Sorry I came off snippy. -Original Message- From: Mike Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 1:16 PM To: [EMAIL PROTECTED] Subject: RE: [jug-discussion] So which jar is it??? Ok, well then, what do you think of the Plugin to Eclipse I suggested, think that

RE: [jug-discussion] So which jar is it???

2003-01-10 Thread Mike Oliver
]' Subject: RE: [jug-discussion] So which jar is it??? That would not be a bad solution if I needed to search a lot of these files a lot of the time. I myself have been known to unpack a jar and mount the directory when I needed to figure out what is going on. If it is a matter of figuring o