| Author |
java program for xml and xsl
|
raj kothari
Greenhorn
Joined: Nov 21, 2005
Posts: 24
|
|
I have an java code which does xml + xsl transform and gives me .html files. This works fine in win xp, however it doesnt work in linux. When running this, in linux, only empty html files are getting created. for information, I have data in xml, style defined in xsl and this code block is small part of full code where i feel is the issue. Please help. FileOutputStream fos = new FileOutputStream(helpHtmlDir+ helpTreeHtmlFileName + "_" + productId + ".html"); OutputStreamWriter osw = new OutputStreamWriter(fos,Utf8Charset); BufferedWriter br = new BufferedWriter(osw); InputStream xmlIs = Thread.currentThread().getContextClassLoader().getResourceAsStream(xmlFileName); StreamSource xmlSource = new StreamSource(xmlIs); if (xmlSource != null) { StringWriter sw = new StringWriter(); StreamResult sr = new StreamResult(sw); Map params = new HashMap(2); XSLTransformUtil.doTransform(xmlSource, helpTreeXslFile,sr, params); br.write(sw.toString()); } br.close();
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
Your code doesn't do a lot of error checking. What happens if xmlSource == null? Are you sure that the filename you're using is correct, so that getResourceAsStream() can find it? Add some error checking code.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: java program for xml and xsl
|
|
|