在JSP中调用PHP代码可以通过使用Java的Runtime类来执行PHP脚本。以下是一个简单的示例:
<%@ page import="java.io.*" %>
<%@ page import="java.lang.*" %>
<%
// 要执行的PHP代码
String phpScript = "/path/to/your/php/script.php";
try {
// 创建Runtime对象
Runtime rt = Runtime.getRuntime();
// 创建Process对象执行PHP脚本
Process pr = rt.exec("php " + phpScript);
// 获取PHP脚本的输出
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
String line = null;
while ((line = input.readLine()) != null) {
out.println(line);
}
int exitVal = pr.waitFor();
out.println("Exited with error code " + exitVal);
} catch (Exception e) {
out.println(e.toString());
}
%>
请注意,这只是一个简单的示例,实际中可能需要根据具体情况进行调整。另外,这种方式可能会有一些安全风险,因此建议谨慎使用。