Returns an InputStream to the specified resource.
Syntax
getResourceAsStream( context , string )
context.getResourceAsStream( string )
Parameters
context
|
the Context object.
|
string
|
the path to the resource.
|
Returns
url
|
the InputStream to the specified resource. null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
input_stream = Context( ).getResourceAsStream( path )
|