我有两个 apache 服务器。一台 apache 服务器正在运行。另一个 apache 没有运行。从运行 apche ,如何找到第二个 apache 是否正在运行?我想要jsp代码..
问问题
463 次
1 回答
2
我不明白你的意思,也许你想通过套接字连接 apache 服务器。
<%@ page contentType="text/html" import="java.io.*, java.net.*" %>
<%
try {
Socket s = new Socket("another.apache.com", 80);
BufferedReader in = new BufferedReader(new
InputStreamReader(s.getInputStream()));
PrintWriter socketOut = new PrintWriter(s.getOutputStream());
socketOut.print("GET /index.html\n\n");
socketOut.flush();
String line;
while ((line = in.readLine()) != null){
out.println(line);
}
} catch (Exception e){}
%>
如果没有任何异常,您的另一个 apache 服务器正在运行,否则它处于脱机状态。
于 2013-03-15T05:25:26.487 回答