我想对多个输出文件进行 XSLT 转换。我在那里使用了“xsl:result-document”。当转换失败时,应删除所有输出文件。但是如果由“xsl:result-document”创建的文档生成失败,我的程序就不能再删除这个文档了。我认为原因是,“xsl:result-document”创建了一个不同的 OutputStream。有谁知道如何关闭所有输出流?
编辑:我使用 Saxon 9.5 进行转换。
请参阅下面的我的源代码:
public void simpleTransform(String sourcePath, String xsltPath, String outputPath)
{
String resultDir=outputPath+"/filename.html";
TransformerFactory tFactory = TransformerFactory.newInstance();
StreamSource ss = new StreamSource(new File(xsltPath));
StreamResult sr = new StreamResult(new File(resultDir));
Transformer transformer = tFactory.newTransformer(ss);
try
{
transformer.transform(new StreamSource(new File(sourcePath)), sr);
System.out.println("Transformation finished!");
}
catch (TransformerException te)
{
try
{
System.out.println("Transformation failed! Trying to close Outputstreams...");
sr.getOutputStream().flush();
sr.getOutputStream().close();
transformer.reset();
System.out.println("Outputstream closed!");
try
{
FileUtils.deleteDirectory(new File(tempDirPath));
System.out.println("Files succesfully deleted!");
}
catch(Exception e)
{
e.printStackTrace();
}
}
catch(IOException e)
{
e.printStackTrace();
}
}
}