java Programming Glossary: icmp
java code to ping an IP address http://stackoverflow.com/questions/11506321/java-code-to-ping-an-ip-address question You can not simply ping in Java as it relies on ICMP which is sadly not supported in Java http mindprod.com jgloss..
How to do a true Java ping from Windows? http://stackoverflow.com/questions/2448666/how-to-do-a-true-java-ping-from-windows ping share improve this question isReachable will use ICMP ECHO REQUEST s if the privilege can be obtained otherwise it.. server if your client doesn't have permission to do the ICMP ECHO REQUEST . Probably both in your case you need to resolve.. I read here . It is apparently a Windows limitation and ICMP PING isn't supported on Windows as a system call previous to..
Android Debugging InetAddress.isReachable http://stackoverflow.com/questions/2935325/android-debugging-inetaddress-isreachable never worked well on Android b c it tries to use ICMP that usually needs a root privileges and then it tries to establish..
how to get list of IP connected in LAN using Java http://stackoverflow.com/questions/3345857/how-to-get-list-of-ip-connected-in-lan-using-java this should work when the hosts on your network react to ICMP packages ping JDK 5 public void checkHosts String subnet int..
Best way to do RAW socket programming involving Java http://stackoverflow.com/questions/3854961/best-way-to-do-raw-socket-programming-involving-java involving Java I have some existing C code that uses ICMP raw sockets to do Ping and I need to use this code in Java as.. I need to use this code in Java as Java does not support ICMP packages. When I wrap the code in JNI and call it the C code..
How to Ping External IP from Java Android http://stackoverflow.com/questions/3905358/how-to-ping-external-ip-from-java-android may not be able to support other protocols such as ICMP used for ping might not be supported. Currently the emulator..
Problem with isReachable in InetAddress class http://stackoverflow.com/questions/4779367/problem-with-isreachable-in-inetaddress-class Ping Permissions The correct way for you is to use the ICMP protocol. This is what ping uses internatlly I believe. Here..
|