DNS Lookup - Online Code
Description
This program when executed gives your systems IP address as an output.
Source Code
import java.net.InetAddress;
import java.net.UnknownHostException;
public class DNSLookup {
public static void main(String args[]) {
try {
InetAddress host;
if (args.length == 0) {
host = I... (login or register to view full code)To view full code, you must Login or Register, its FREE.
Hey, registering yourself just takes less than a minute and opens up a whole new GetGyan experience.
Related Online Codes:
Comments
No comment yet. Be the first to post a comment. |
