我想用php代码执行java程序。当我编写下面的代码时,在编辑器中编写的程序正在成功编译和执行。
putenv('path=C:Program FilesJavajdk1.8.0_73bin');
echo shell_exec("javac $output 2>&1"); // for compiling and creating class file
echo exec("java $check 2>&1"); // for executing generated class file and prints output
注意:$output
和$check
变量包含编译和运行所需的输入
但是,当我尝试执行需要输入一些数据以继续执行的 java 程序时,上面的代码不起作用。例如,考虑链接中的JavaScannerExample
:http://alvinalexander.com/java/edu/pj/pj010005
要执行链接中的程序,我想我需要一些交互式控制台来接受输入并继续执行程序。请建议我如何使用 php 实现这一点?
更新:
@Chris..已按照建议尝试proc_open
命令。请参阅下面的代码:
PHP代码
<?php
$JAVA_HOME = "C:Javajdk1.7.0_79";
$PATH = "$JAVA_HOMEbin";
putenv("JAVA_HOME=$JAVA_HOME");
putenv("PATH=$PATH");
$result = shell_exec("javac JavaScannerExample.java 2>&1");
if ($result == ""){
$options = ["bypass_shell" => true];
$proc=proc_open("java JavaScannerExample",
array(
array("pipe","r"),
array("pipe","w"),
array("pipe","w")
),
$pipes,NULL,NULL,$options);
if (is_resource($proc)) {
fwrite($pipes[0], 'Mark');
fwrite($pipes[0], 32);
fclose($pipes[0]);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
}
}
else{
echo $result;
}
?>
爪哇代码
import java.util.Scanner;
public class JavaScannerExample
{
public static void main (String[] args)
{
// create a scanner so we can read the command-line input
Scanner scanner = new Scanner(System.in);
// prompt for the user's name
System.out.print("Enter your name: ");
// get their input as a String
String username = scanner.next();
// prompt for their age
System.out.print("Enter your age: ");
// get the age as an int
int age = scanner.nextInt();
System.out.println(String.format("%s, your age is %d", username, age));
}
}
PHP 输出
Enter your name: Enter your age:
你能检查一下,让我知道我哪里出错了吗?
更新2:
@Chris..感谢您的建议。它帮助我获得了输出。
这是修改后的 php 代码:
putenv('path=C:Program FilesJavajdk1.8.0_73bin');
$result = shell_exec("javac JavaScannerExample.java 2>&1");
if ($result == ""){
$options = ["bypass_shell" => true];
$proc=proc_open("java JavaScannerExample",
array(
array("pipe","r"),
array("pipe","w"),
array("pipe","w")
),
$pipes,NULL,NULL,$options);
if (is_resource($proc)) {
fwrite($pipes[0], "Markn");
fwrite($pipes[0], "32n");
fclose($pipes[0]);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
}
}
else{
echo $result;
}
这就是我得到的结果。
Enter your name: Enter your age: Mark, your age is 32
这种类型的结果存在多个问题。首先,我正在尝试构建一个交互式控制台。因此,对于上面的例子,管道需要并行工作。但是,在关闭管道[0]之前,我无法检索管道[1]。因为如果我在代码的前面得到管道[1]的值,程序就会挂起。在这种情况下。首先,我需要能够读取输入"输入您的姓名:",然后输入"标记"。接下来的步骤类似,我需要获取文本"输入年龄:"并输入输入"32"。最后,我需要获得最终输出,即"标记,您的年龄是 32",并检测程序已完成,然后关闭两个管道。这可能吗?
使用 proc_open 而不是 exec。它可用于检索管道以stdin
该管道可用于向 Java 应用程序提供输入。proc_open
手册页上的第一个示例演示了如何执行此操作。
关于您的更新,也许使用 fread
而不是 stream_get_contents
. fread
应该只读取可用的内容,而stream_get_contents
将阻塞,直到保证流中没有更多的可读数据。如果您想在程序终止之前获得stdout
,请尝试以下操作。
$line_limit = 1024;
echo fread($pipes[1], $line_limit);
fwrite($pipes[0], "Markn");
echo fread($pipes[1], $line_limit);
fwrite($pipes[0], "32n");
echo fread($pipes[1], $line_limit);
fclose($pipes[0]);
fclose($pipes[1]);
唯一需要注意的是,如果你尝试在Java程序完成输出之前读取数据,那么你可能无法获得你期望的所有输出(可能根本没有(。如果您遇到这种情况,我会在写入和读取之间添加延迟(sleep
(。
如果你想要一个真正的交互式终端,那么你可能不得不生成一个后台线程,不断轮询stdout
以获取更多数据,但这可能最好在另一个问题中提出。