How can I code a java program to ping an ip address with a corresponding socket and send a data to that ip using java program!?
Any suggestions!?!
|
How can I code a java program to ping an ip address with a corresponding socket and send a data to that ip using java program!? Any suggestions!?! |
|||||
|
|
You can't do ping in Java -- ping works at ICMP level which works on top of IP, whereas Java offers support for UDP (which sits on top of IP) and TCP (again on top of IP). It's basically a different (higher level) protocol for which you will need your own (native) library written in order to gain access to the IP stack. |
|||
|
|
|
Ping is a specific ICMP protocol. You cannot send ICMP packets in pure Java. However, you can open a TCP Socket to a specific port and send it some data. There are millions of example of tutorials on how to do this. I suggest you look at these http://www.google.co.uk/search?q=java+socket+tutorial 6 million results http://www.google.co.uk/search?q=java+socket+example 11.6 million results. To send just one character you can do
|
||||
|