Tomcat status
public boolean TomcatServer(String port){try{
URL url = new URL("http://localhost:"+port+"/TestingIdP/");
URLConnection con = url.openConnection();
java.io.BufferedReader in = new java.io.BufferedReader(new
java.io.InputStreamReader(con.getInputStream()));
}catch(Exception e){
return false;
}
return true;
}
页:
[1]