Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 .php 从 php 运行 jar 文件shell_exec(java -jar C:/myfile.jar)。它不起作用,我在 apache 错误日志中收到以下错误。“java 未被识别为内部或外部命令”。它在 Windows 命令提示符下工作得非常好。请帮忙。
shell_exec(java -jar C:/myfile.jar)
听起来java.exe可执行文件不在路径上。
java.exe
只需包含它的完全限定路径,如果目录包含空格,则在必要时引用。
你可以试试这个
exec("java -jar WaveAppender.jar ")