Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Cameron Evans   on Apr 03 In Java Category.

  
Question Answered By: Silk Choco   on Apr 03

Use the following code to find your ip address:

public class NetInfo {
public static void main(String[] args) {
new NetInfo().say();
}

public void say() {
try {
java.net.InetAddress i = java.net.InetAddress.getLocalHost();
System.out.println(i); // name and IP address
System.out.println(i.getHostName()); // name
System.out.println(i.getHostAddress()); // IP address only
}
catch(Exception e){e.printStackTrace();}

}
}


To send message to client and disconnect, use the link stackoverflow.com/.../how-can-i-get-my-java-chat-client-and-server-to-exchange-messages-from-a-textfie . If you want to view your external ip address visit http://www.ip-details.com/ .

Share: 

 

This Question has 1 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on How to get IP address? Or get search suggestion and latest updates.


Tagged: