我的应用程序的jar文件有多个类。 PHP通过命令提示符调用jar文件。我使用以下PHP代码段来调用jar文件。
<?php
$result=popen('java -jar D:\\Development\\Filehandler\\dist\\Filehandler.jar getConfigLang', "r");
while(!feof($result)){
print fread($result, 1024);
flush();
}
fclose($result);
?>
这里的问题很有意思。我能够获得main函数中的'System.out.println'语句。但是无法从其他类中获取输出语句。
我也尝试过exec()。 .jar工作正常,当从命令提示符直接调用时,它工作正常。
有没有办法捕获整个输出?
答案 0 :(得分:1)
您是否尝试过使用proc_open:
http://au.php.net/manual/en/function.proc-open.php
它允许你设置管道“将被设置为一个索引的文件指针数组,对应于PHP创建的任何管道的末端。”
来自php.net的例子
<?php
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
);
$cwd = '/tmp';
$env = array('some_option' => 'aeiou');
$process = proc_open('php', $descriptorspec, $pipes, $cwd, $env);
if (is_resource($process)) {
// $pipes now looks like this:
// 0 => writeable handle connected to child stdin
// 1 => readable handle connected to child stdout
// Any error output will be appended to /tmp/error-output.txt
fwrite($pipes[0], '<?php print_r($_ENV); ?>');
fclose($pipes[0]);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
// It is important that you close any pipes before calling
// proc_close in order to avoid a deadlock
$return_value = proc_close($process);
echo "command returned $return_value\n";
}
?>