使用bat文件执行xml文件

时间:2011-03-25 12:30:28

标签: ant batch-file

这里我有一个bat文件 test.bat - >

@echo off
echo this is piyush
pause
dir c:\

另一个文件是xml(创建文件.xml)文件,用于创建两个文本文件 我的问题是如何在bat文件中执行xml文件来创建两个文本文件。

Createfile.xml - >

<?xml version="1.0" ?>
<project name="piyush" default="Create_XMLfile">
  <target name="Create_XMLfile">
    <echo file="peak1.xml" message="This is creation of the peak1"/>
    <echo file="peak1.xml" message="This is creation of the peak1"/>
  </target>
</project>

1 个答案:

答案 0 :(得分:2)

看起来像ant构建脚本。

如果您安装了ant,则可以尝试ant -buildfile Createfile.xml