RE: how to reload a getResourceAsStream() object

2001-08-08 Thread Remy Maucherat
Quoting Thom Park <[EMAIL PROTECTED]>: > Hmm... > > so what about this line of code in StandardClassLoader: > > public InputStream getResourceAsStream(String name) { > > if (debug >= 2) > log("getResourceAsStream(" + name + ")"); > InputStream stream = null; >

RE: how to reload a getResourceAsStream() object

2001-08-08 Thread Thom Park
7;s a wee bit frustrating. I guess I need to find out what the heck is going on with this stream nonsense. -Thom -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 3:49 PM To: [EMAIL PROTECTED] Subject: Re: how to reload a getResourceA

Re: how to reload a getResourceAsStream() object

2001-08-08 Thread Remy Maucherat
Quoting Thom Park <[EMAIL PROTECTED]>: > hello, > > I have a requirement where i need to make multiple passes over a > resource > stream > obtained via ServletContext.getResourceAsStream(). > > My problem is that as follows: > > InputStream is = sc.getResourceAsStream("/my_resource_name"

Re: how to reload a getResourceAsStream() object

2001-08-08 Thread Pier P. Fumagalli
Thom Park at [EMAIL PROTECTED] wrote: > hello, > > I have a requirement where i need to make multiple passes over a resource > stream > obtained via ServletContext.getResourceAsStream(). > > My problem is that as follows: > > InputStream is = sc.getResourceAsStream("/my_resource_name"); > > .