How to create File object from InputStream
807606May 18 2007 — edited May 22 2007Hi everybody
Can I know a way to create a File object from InputStream object
Here's my code:
URL url = loader.getResource(xsdFile); //Thats a schema file..not to worry
InputStream istream = url.openStream();
Now from that 'istream' I need to build File object.
Thank you all