我正在.exe
从我的程序运行一个文件,它需要一定的时间。此命令的输出用于以下语句中以进行进一步处理。输出是一个布尔变量。但是程序是false
立即返回的,但实际上该命令仍在执行中,并且需要一定的时间。由于 false 值,后续语句会引发错误。我该如何处理这种情况。是return_var = exec(pagecmd)
执行语句。
boolean return_var = false;
if("true".equals(getConfig("splitmode", ""))){
System.out.println("Inside splitmode if**********************");
String pagecmd = command.replace("%", page);
pagecmd = pagecmd + " -p " + page;
File f = new File(swfFilePath);
System.out.println("The swffile inside splitmode block exists is -----"+f.exists());
System.out.println("The pagecmd is -----"+pagecmd);
if(!f.exists()){
return_var = exec(pagecmd);
System.out.println("The return_var inside splitmode is----"+return_var);
if(return_var) {
strResult=doc;
}else{
strResult = "Error converting document, make sure the conversion tool is installed and that correct user permissions are applied to the SWF Path directory" +
getDocUrl();
}