We can get the computer name by the java code program.
For getting computer name we have used java.net.InetAddress class. We
will use static method getLocalHost() for fetching the localhost
and after having localhost we will be able to have host name by using getHostName()
method of InetAddress class.
Here is the full example code of GetComputerName.java as follows:
GetComputerName.java
import java.util.*;
|
Output:
| C:\javaexamples>javac GetComputerName.java C:\javaexamples>java GetComputerName roseindia |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Get computer name in java View All Comments
Post your Comment