[google-appengine] Reading a file in GAE Java

2010-03-22 Thread Iain Flynn
Hi there. I have an application that requires me to read in and transform an XSLT stylesheet, which I keep in the directory /xml in / war. I've read the tutorials, and I've included it as a resource file (more specifically, set that all xsl files are included as resource files), but when I try to

Re: [google-appengine] Reading a file in GAE Java

2010-03-22 Thread Patrick Twohig
I use Class.getResourceAsStream(/xml/myschema.xsd); Cheers! On Mon, Mar 22, 2010 at 10:57 AM, Iain Flynn trancedsha...@gmail.comwrote: Hi there. I have an application that requires me to read in and transform an XSLT stylesheet, which I keep in the directory /xml in / war. I've read