Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要求,每次输出文件名都应该是唯一的.我的命令是
java -jar saxon9pe.jar -now:yyyy-mm-ddThh:mm:ss+hh:mm input.xml input.xsl >output.xml
我可以在输出文件的末尾添加时间戳吗?此命令将从窗口调度程序运行。
我认为您要么需要将now选项设置为具体值,2013-08-26T12:00:00要么您可以简单地current-dateTime()在样式表中使用来访问当前日期/时间。
now
2013-08-26T12:00:00
current-dateTime()