我正在使用ProcessBuilder运行Windows可执行文件...我需要运行的确切命令是:
"C:\Program Files\CCBU\CCBU.exe" -d"C:\My Data\projects\ccbu\ciccb-report.xls" -tf"C:\Program Files\CCBU\loss-billing-filters.txt"
如果我在命令提示符下运行上述命令,效果很好。
如果我随后以字符串[]数组的形式发出以下StackOverflow post(ProcessBuilder向命令行添加额外引号)中所示的命令和参数,则会失败,因为目录路径中的空格以某种方式将参数打断到CCBU。exe可执行文件:
[log-snippet]
2015-08-31 10:39:08,937 [main] INFO rpd.primary - C:\Program Files\CCBU\CCBU.exe
logging to the given report's directory
Configuration file is: ./CCBUConfigFile.txt
Running with the following settings:
Report Filepath: C:\My
Search Terms FilePath: C:\Program
2015-08-31 10:39:08,948 [main] INFO rpd.primary - STDERR:--------------------
2015-08-31 10:39:08,961 [main] INFO rpd.primary -
Warning: parameter Data\projects\ccbu\ciccb-report.xls not recognized. Ignoring
Warning: parameter Files\CCBU\loss-billing-filters.txt not recognized. Ignoring
Error: C:\Program not found or not readable
[/log-snippet]
如果我将数据文件和过滤器移动到一个没有空格的目录路径,这很好:
"C:\Program Files\CCBU\CCBU.exe" -d"C:\Users\n0002501\ccbu\ciccb-report.xls" -tf"C:\Users\n0002501\ccbu\loss-billing-filters.txt"
问题是,此过程的用户将把文件放在确实有空格的文件夹(目录)中。所以不知何故,我必须让它使用空格。我认为这很简单,但我错过了什么?
我使用本文中的类来处理STDOUT和STDERR的线程:http://alvinalexander.com/java/java-exec-processbuilder-process-2
代码如下:
// Split the Arguments :
// In Eclipse and runtime, the arguments get broken :
// The STDOUT from the command shows the Report Filepath
// and Search Teams FilePath as broken at the 1st space...
//
// Report Filepath: C:\My
// Search Terms FilePath: C:\Program
//
// SHOULD BE :
//
// Report Filepath: C:\My Data\projects\ccbu\ciccb-report.xls
// Search Terms FilePath: C:\Program Files\CCBU\loss-billing-filters.txt
//
try {
commands.add ( "\"C:\\Program Files\\CCBU\\CCBU.exe\"" );
commands.add ( "-d\"C:\\My Data\\projects\\ccbu\\ciccb-report.xls\"" );
commands.add ( "-tf\"C:\\Program Files\\CCBU\\loss-billing-filters.txt\"" );
commandExecutor = new SystemCommandExecutor(commands);
commandExecutor.setLog ( getLog() );
// DEBUG : Build and printout the commands...
//
lstrCommand = "";
for ( int theIdx=0; theIdx<commands.size (); theIdx++ ) {
if ( theIdx == 0 ) {
lstrCommand = lstrCommand + commands.get ( theIdx );
}
else {
lstrCommand = lstrCommand + " " + commands.get ( theIdx );
}
getLog().debug ( SHORT_NAME + " Building Command[] [" + commands.get ( theIdx ) + "]" );
}
getLog().debug ( SHORT_NAME + " Running Command[] [" + lstrCommand + "]" );
result = commandExecutor.executeCommand();
// get the stdout and stderr from the command that was run
stdout = commandExecutor.getStandardOutputFromCommand();
stderr = commandExecutor.getStandardErrorFromCommand();
// print the stdout and stderr
getLog().info ( "SystemCommandExecutor - Status Code [" + result + "]" );
getLog().info ( "STDOUT:--------------------" );
getLog().info( stdout );
getLog().info ( "STDERR:--------------------" );
getLog().info( stderr );
}
catch ( Exception ltheXcp ) {
getLog().error ( SHORT_NAME + ".runTask () - Error/exception on commands [3-spaces] [" + lstrCommand + "]" );
}
finally {
commands.clear ();
stdout = null;
stderr = null;
commandExecutor = null;
}
Jayan,最终有效的代码:
try {
commands.add ( "C:\\Program Files\\CCBU\\CCBU.exe" );
commands.add ( "-dC:\\My Data\\projects\\ccbu\\ciccb-report.xls" );
commands.add ( "-tfC:\\Program Files\\CCBU\\loss-billing-filters.txt" );
commandExecutor = new SystemCommandExecutor ( commands );
commandExecutor.setLog ( getLog() );
我所要做的就是去掉所有的双引号,让ProcessBuilder自己处理目录路径。。。
tia,adym
添加不带“双”引号的单个字符串。。
commands.add ( "C:\\Program Files\\CCBU\\CCBU.exe" );
commands.add ( "-d");
commands.add ("C:\\My Data\\projects\\ccbu\\ciccb-report.xls" );
commands.add ( "-tf");
commands.add("C:\\Program Files\\CCBU\\loss-billing-filters.txt" );
commandExecutor = new SystemCommandExecutor(commands);
ProcessBuilder将负责args的必要处理。
调出评论:
贾扬,你的想法让我思考:以下工作:
commands.add ( "-dC:\\My Data\\projects\\ccbu\\ciccb-report.xls" );
commands.add ( "-tfC:\\Program Files\\CCBU\\loss-billing-filters.txt"
);-lincolnadym
问题内容: 我正在使用ProcessBuilder运行Windows可执行文件…我需要运行的确切命令是: 如果我从命令提示符处运行上述命令,它将正常工作。 然后,如果我按照下面的帖子(ProcessBuilder在命令行中添加额外的引号)中的String []数组的形式发出命令和参数,则它将失败,因为目录路径中的空格以某种方式将参数打断到CCBU.exe可执行文件: 如果我将数据文件和过滤器移动到
问题内容: 我知道关于从Java执行流程有很多解决的问题,但是我无法使用提供的答案解决问题。我正在尝试从Java应用程序创建postgresql数据库备份。我使用以下代码 执行以上代码后,出现以下错误: 仅当备份文件的路径包含空格时才出现问题,否则将创建备份。我试图在文件路径中同时使用斜杠和反斜杠,但我引用了文件路径,但每次都遇到相同的错误。可以从命令提示符处执行命令。 我做错了。关于Proces
问题内容: 我有此命令可以执行我想要的操作,但无法在我的.bashrc中使用别名(请注意,它同时使用单引号和双引号): 我试过了: 还有一些其他没有运气的常识组合。.我知道bash带有引号是非常挑剔的。.因此,为它加上别名的正确方法是什么?为什么?谢谢 问题答案: 您只需要正确地转义即可。
问题内容: 我在Ubuntu环境中使用jar执行openSSL命令时遇到问题。我的结论是,发生这种情况是由于文件路径中的空间正在作为命令中的参数(例如,以下命令中的SHA 256)传递。我已经使用了进程和类来执行相同的操作: 首先 : 第二 : 最终命令如下所示,如果在命令提示符下单独执行,则工作正常,但使用Java代码执行时失败: 我也使用以下方法解决了此问题,但是没有按预期工作: 请查看并帮助
问题内容: 我需要使用ProcessBuilder构建以下命令: 我尝试使用以下代码: 但是,这会将以下内容传递给系统(已使用Sysinternals Process Monitor进行了验证) 注意前面的引号和后面的两个引号。我需要除去那些多余的引号,因为它们会使调用失败。有谁知道如何做到这一点? 问题答案: 据我了解,由于ProcessBuilder不知道如何将参数传递给命令,因此需要将参数分
这里,整个“service.getdata”语句应该是一个匹配项,但它在(转义的)双引号处中断。如果我用双引号括起参数值,它就可以工作了(就像它在前面的示例块中所做的那样)。但不幸的是,当参数值没有用双引号包装时,我需要它也能工作。 有人能帮我做最后一块吗?