Hi all

I am new to google app engine and I need to use XSLT parser. I was
able to create an example by using file.

TransformerFactory tfactory = TransformerFactory.newInstance();
Transformer transformer = tfactory.newTransformer(new StreamSource(new
File(xslID)));
transformer.transform(new StreamSource(new File(sourceID)), new
StreamResult(System.out));

It works well on local system. But fails on gae as gae does not
support files.

Any alternate for this will be highly appreciated as I have no other
way but to use XSLT.


Thanks in advance

Rick

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to