使用输入文件作为输出文件而不使用任何临时文件,似乎不可能运行ant xslt任务来对xml(例如)进行排序。
我使用以下目标对所有arxml文件的内容进行排序。
<target name="sort_arxml" depends="init" description="Do a XLST on all arxml files to sort their content">
<tempfile property="sort.xslt" suffix=".xslt" deleteonexit="true" />
<echo file="${sort.xslt}">
<![CDATA[
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()">
<xsl:sort select="child::*"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
]]></echo>
<xslt style="${sort.xslt}" basedir="../Config" destdir="../Config" extension=".arxml" includes="**/*.arxml" excludes="**/AUTOSAR*"/>
</target>
但是我不能这样做,因为它返回一个异常
java.io.FileNotFoundException: xxxxConfigDeveloperComponentTypesyyyy.arxml (Access is denied)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:221)
at java.io.FileOutputStream.<init>(FileOutputStream.java:171)
at org.apache.tools.ant.taskdefs.optional.TraXLiaison.transform(TraXLiaison.java:185)
at org.apache.tools.ant.taskdefs.XSLTProcess.process(XSLTProcess.java:816)
如果我使用不同的扩展名,它可以工作,但随后我必须将文件复制回原始文件。
有人修复了这个吗?如果,怎么做?是变压器的问题吗?
系统信息:
Apache Ant(TM) version 1.9.2 compiled on July 8 2013
Detected Java version: 1.7 in: C:Program FilesJavajdk1.7.0_45jre
Detected OS: Windows 7
XSLT本身不能写入其输入文件,因此ant XSLT任务无法帮助您实现目标。
顺便说一下,创建临时文件或目录并没有错,而且将XSLT输入与输出分开也有好处。ant XSLT任务可以检测何时需要重新运行转换,并且当输入和输出文件不同时,可以方便地进行调试。你最好不要去违背别人的意愿。如果您不能设计出与输入文件相同的输出文件,只需写入单独的输出目录,并在转换后将输入目录替换为输出目录:
<target name="sort_arxml" depends="init"
description="Do a XLST on all arxml files to sort their content">
<!-- [ same as in question ] -->
<xslt style="${sort.xslt}" basedir="../Config" destdir="../ConfigTMP"
extension=".arxml" includes="**/*.arxml" excludes="**/AUTOSAR*"/>
<delete dir="../Config"/>
<move file="../ConfigTMP" tofile="../Config"/>
</target>
不能同时对同一个文件进行读写操作。
您必须选择另一个输出文件名(或不同的文件夹),然后用新文件替换旧文件。
默认情况下,ant Move Task会覆盖现有文件。