[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Name of files being processed

Subject: Name of files being processed
From: xptm <xptm@xxxxxxx>
Date: Thu, 29 Jul 2004 13:17:13 +0100
being processed
Hi:

I'm making a transformation from Java like this:

BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("INPUT.xml")));
PrintWriter out = new PrintWriter(new FileOutputStream("OUTPUT.xml"));
try {
TransformerFactory xformFactory = TransformerFactory.newInstance();
Source xsl = new StreamSource("Testes12.xsl");
Transformer stylesheet = xformFactory.newTransformer(xsl);
Source request = new StreamSource(br);
Result response = new StreamResult(out);
stylesheet.transform(request, response);


in other words, i'm transforming the file named INPUT into the file named OUTPUT. This names can, of course, be variable.

How can i, inside my XSLT, know the names of the files been processed? I want to know this because i want to use document() with a file name related with the one been processed.

In my Java example maybe i can just use

stylesheet.setParameter("inputfilename", ...);

but that's not a ideal solution for me.

Thxs.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.