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;
>
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
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"
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");
>
> .