试图在我的一个批处理工作中集成谷歌闭包编译器,但很难使其工作。
使用命令提示符,我可以输入以下命令并编译脚本。(该命令是一个不言自明的示例)
java -jar "compiler.jar" --js_output_file="myOutput.min.js" --js="input1.js" --js="input2.js"
我曾尝试使用System.Diagnostics.Process对象来复制它,但到目前为止都失败了。
我试过了
Dim command As String = BuildCommand(CompilationScripts, Me._Output)
Dim process As New Process
process.Start("compiler.jar", command)
我试过了
Dim command As String = BuildCommand(CompilationScripts, Me._Output)
Dim process As New Process
process.StartInfo.Arguments = command
process.Start("compiler.jar")
我试过了
Dim command As String = BuildCommand(CompilationScripts, Me._Output)
Dim process As New Process
process.StartInfo.Arguments = command
process.Start("cmd.exe")
我做错了什么