Computer >> Máy Tính >  >> Lập trình >> Java

Chương trình Java để tìm Địa chỉ IP của máy khách

Để tìm Địa chỉ IP của máy khách, mã Java như sau -

Ví dụ

import java.net.*;
import java.io.*;
import java.util.*;
import java.net.InetAddress;
public class Demo{
   public static void main(String args[]) throws Exception{
      InetAddress my_localhost = InetAddress.getLocalHost();
      System.out.println("The IP Address of client is : " + (my_localhost.getHostAddress()).trim());
      String my_system_address = "";
      try{
         URL my_url = new URL("https://bot.whatismyipaddress.com");
         BufferedReader my_br = new BufferedReader(new
         InputStreamReader(my_url.openStream()));
         my_system_address = my_br.readLine().trim();
      }
      catch (Exception e){
         my_system_address = "Cannot Execute Properly";
      }
   }
}

Đầu ra

The IP Address of client is : 127.0.0.1

Một lớp có tên Demo chứa chức năng chính. Trong chức năng chính này, một thể hiện của lớpInetAddress được tạo và chức năng ‘getHostAddress’ được sử dụng để lấy địa chỉ IP của máy khách. Điều này được hiển thị trên bảng điều khiển.