コードのこの部分を使用してJavaのIPアドレスにpingを実行していますが、localhostへのpingのみが成功し、他のホストの場合、プログラムはホストに到達できないと表示します。ファイアウォールを無効にしましたが、まだこの問題があります
public static void main(String[] args) throws UnknownHostException, IOException {
String ipAddress = "127.0.0.1";
InetAddress inet = InetAddress.getByName(ipAddress);
System.out.println("Sending Ping Request to " + ipAddress);
System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable");
ipAddress = "173.194.32.38";
inet = InetAddress.getByName(ipAddress);
System.out.println("Sending Ping Request to " + ipAddress);
System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable");
}
出力は次のとおりです。
127.0.0.1へのPing要求の送信
ホストに到達可能です
Ping要求を173.194.32.38に送信しています
ホストに到達できません
ICMPに依存しているため、Javaで単純にpingすることはできません。これは、残念ながらJavaではサポートされていません
http://mindprod.com/jgloss/ping.html
代わりにソケットを使用してください
それが役に立てば幸い
javadoc によるInetAddress.isReachable()
:
「..特権を取得できる場合、一般的な実装はICMP ECHO REQUESTを使用します。そうでない場合、宛先ホストのポート7(エコー)でTCP接続を確立しようとします。
オプション#1(ICMP)には通常、管理(root)
権限が必要です。
このコードはあなたを助けると思います:
public class PingExample {
public static void main(String[] args){
try{
InetAddress address = InetAddress.getByName("192.168.1.103");
boolean reachable = address.isReachable(10000);
System.out.println("Is Host reachable? " + reachable);
} catch (Exception e){
e.printStackTrace();
}
}
}
接続を確認してください。私のコンピューターでは、これは両方のIPに対してREACHABLEを出力します:
127.0.0.1へのPing要求の送信
ホストに到達可能です
Ping要求を173.194.32.38に送信しています
ホストに到達可能です
編集:
GetByAddress()を使用してアドレスを取得するようにコードを変更してみてください。
public static void main(String[] args) throws UnknownHostException, IOException {
InetAddress inet;
inet = InetAddress.getByAddress(new byte[] { 127, 0, 0, 1 });
System.out.println("Sending Ping Request to " + inet);
System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable");
inet = InetAddress.getByAddress(new byte[] { (byte) 173, (byte) 194, 32, 38 });
System.out.println("Sending Ping Request to " + inet);
System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable");
}
GetByName()メソッドは、マシン上では不可能な何らかの逆DNSルックアップを試みる場合がありますが、getByAddress()はそれをバイパスする場合があります。
確実に動作します
import Java.io.*;
import Java.util.*;
public class JavaPingExampleProgram
{
public static void main(String args[])
throws IOException
{
// create the ping command as a list of strings
JavaPingExampleProgram ping = new JavaPingExampleProgram();
List<String> commands = new ArrayList<String>();
commands.add("ping");
commands.add("-c");
commands.add("5");
commands.add("74.125.236.73");
ping.doCommand(commands);
}
public void doCommand(List<String> command)
throws IOException
{
String s = null;
ProcessBuilder pb = new ProcessBuilder(command);
Process process = pb.start();
BufferedReader stdInput = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedReader stdError = new BufferedReader(new InputStreamReader(process.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null)
{
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):\n");
while ((s = stdError.readLine()) != null)
{
System.out.println(s);
}
}
}
この方法を使用して、Windowsまたは他のプラットフォーム上のホストにpingを実行できます。
private static boolean ping(String Host) throws IOException, InterruptedException {
boolean isWindows = System.getProperty("os.name").toLowerCase().contains("win");
ProcessBuilder processBuilder = new ProcessBuilder("ping", isWindows? "-n" : "-c", "1", Host);
Process proc = processBuilder.start();
int returnVal = proc.waitFor();
return returnVal == 0;
}
他の人が与えたものに追加するだけで、たとえうまく機能していても、インターネットが遅い場合や不明なネットワークの問題が存在する場合、一部のコードは機能しません(isReachable()
)。しかし、下記のこのコードは、ウィンドウに対するコマンドラインping(cmd ping)として機能するプロセスを作成します。それはすべての場合に私のために機能し、試してテストされました。
コード:-
public class JavaPingApp {
public static void runSystemCommand(String command) {
try {
Process p = Runtime.getRuntime().exec(command);
BufferedReader inputStream = new BufferedReader(
new InputStreamReader(p.getInputStream()));
String s = "";
// reading output stream of the command
while ((s = inputStream.readLine()) != null) {
System.out.println(s);
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String ip = "stackoverflow.com"; //Any IP Address on your network / Web
runSystemCommand("ping " + ip);
}
}
乾杯!!!
これはWindowsのICMPに依存していませんが、この実装は新しい Duration API
public static Duration ping(String Host) {
Instant startTime = Instant.now();
try {
InetAddress address = InetAddress.getByName(Host);
if (address.isReachable(1000)) {
return Duration.between(startTime, Instant.now());
}
} catch (IOException e) {
// Host not available, nothing to do here
}
return Duration.ofDays(1);
}
以下は、Java
およびWindows
システムで動作するUnix
のIPアドレスにpingを実行する方法です。
import org.Apache.commons.lang3.SystemUtils;
import Java.io.BufferedReader;
import Java.io.IOException;
import Java.io.InputStreamReader;
import Java.util.ArrayList;
import Java.util.List;
public class CommandLine
{
/**
* @param ipAddress The internet protocol address to ping
* @return True if the address is responsive, false otherwise
*/
public static boolean isReachable(String ipAddress) throws IOException
{
List<String> command = buildCommand(ipAddress);
ProcessBuilder processBuilder = new ProcessBuilder(command);
Process process = processBuilder.start();
try (BufferedReader standardOutput = new BufferedReader(new InputStreamReader(process.getInputStream())))
{
String outputLine;
while ((outputLine = standardOutput.readLine()) != null)
{
// Picks up Windows and Unix unreachable hosts
if (outputLine.toLowerCase().contains("destination Host unreachable"))
{
return false;
}
}
}
return true;
}
private static List<String> buildCommand(String ipAddress)
{
List<String> command = new ArrayList<>();
command.add("ping");
if (SystemUtils.IS_OS_WINDOWS)
{
command.add("-n");
} else if (SystemUtils.IS_OS_UNIX)
{
command.add("-c");
} else
{
throw new UnsupportedOperationException("Unsupported operating system");
}
command.add("1");
command.add(ipAddress);
return command;
}
}
依存関係に Apache Commons Lang
を必ず追加してください。
Oracle-jdkを使用するLinuxでは、送信されたOPは、ルートではない場合はポート7を使用し、ルートではICMPを使用します。ドキュメントで指定されているようにrootとして実行すると、実際のICMPエコー要求を行います。
これをMSマシンで実行している場合は、ICMPの動作を取得するために管理者としてアプリを実行する必要があります。
私はこれが以前のエントリで回答されていることを知っていますが、この質問に出会う他の人のために、Windowsで「ping」プロセスを使用し、出力をスクラブする必要がない方法を見つけました。
私がやったことは、JNAを使用してWindowのIPヘルパーライブラリを呼び出してICMPエコーを行うことでした
私自身の同様の問題に対する私自身の答え を参照してください
私はいくつかのオプションを試しました:
InetAddress.getByName(ipAddress)
、Windowsのネットワークは数回試行した後、誤動作を開始しました
Java HttpURLConnection
URL siteURL = new URL(url);
connection = (HttpURLConnection) siteURL.openConnection();
connection.setRequestMethod("GET");
connection.setConnectTimeout(pingTime);
connection.connect();
code = connection.getResponseCode();
if (code == 200) {
code = 200;
}.
これは信頼できましたが、少し遅いです
最終的に、次の内容のバッチファイルをWindowsマシンに作成することになりました。ping.exe -n %echoCount% %pingIp%
次に、Javaコードで.batファイルを呼び出しました。
public int pingBat(Network network) {
ProcessBuilder pb = new ProcessBuilder(pingBatLocation);
Map<String, String> env = pb.environment();
env.put(
"echoCount", noOfPings + "");
env.put(
"pingIp", pingIp);
File outputFile = new File(outputFileLocation);
File errorFile = new File(errorFileLocation);
pb.redirectOutput(outputFile);
pb.redirectError(errorFile);
Process process;
try {
process = pb.start();
process.waitFor();
String finalOutput = printFile(outputFile);
if (finalOutput != null && finalOutput.toLowerCase().contains("reply from")) {
return 200;
} else {
return 202;
}
} catch (IOException e) {
log.debug(e.getMessage());
return 203;
} catch (InterruptedException e) {
log.debug(e.getMessage());
return 204;
}
}
これは最速かつ最も信頼できる方法であることが証明されました
InetAddressは常に正しい値を返すとは限りません。ローカルホストの場合は成功しますが、他のホストの場合、ホストに到達できないことが示されます。以下のようにpingコマンドを使用してみてください。
try {
String cmd = "cmd /C ping -n 1 " + ip + " | find \"TTL\"";
Process myProcess = Runtime.getRuntime().exec(cmd);
myProcess.waitFor();
if(myProcess.exitValue() == 0) {
return true;
}
else {
return false;
}
}
catch (Exception e) {
e.printStackTrace();
return false;
}