共计 835 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中实现 ping 功能可以通过执行系统命令来调用操作系统提供的 ping 命令。以下是一个示例代码:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class PingExample {public static void main(String[] args) {String ipAddress = "127.0.0.1";
try {Process process = Runtime.getRuntime().exec("ping " + ipAddress);
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {System.out.println(line);
}
int exitValue = process.waitFor();
if (exitValue == 0) {System.out.println("Ping successful");
} else {System.out.println("Ping failed");
}
} catch (IOException | InterruptedException e) {e.printStackTrace();
}
}
}
在上面的代码中,我们通过 Runtime.getRuntime().exec("ping " + ipAddress)
来执行 ping 命令,然后读取 ping 命令的输出并打印出来。最后通过 process.waitFor()
方法获取 ping 命令的退出值,如果退出值为 0 则表示 ping 成功,否则表示 ping 失败。
请注意,执行系统命令存在一定的安全风险,需要谨慎处理输入参数。
丸趣 TV 网 – 提供最优质的资源集合!
正文完