我是Mac用户,并通过终端使用ping命令以毫秒为单位测量ping时间。我想创建一个Java应用程序,我只需输入ip并获得ping响应时间。
我知道我可以使用InetAddress
来确定IP是否可以访问,但如何确定ping时间?
答案 0 :(得分:2)
public void ping (String entryIpAddress){
try{
String command ="ping "+entryIpAddress;
Process process = Runtime.getRuntime().exec(command);
process.getOutputStream();
}catch(Exception e){}
}