IpTest.java 435 Bytes
package com.credit.cy.user;

import org.junit.jupiter.api.Test;

import java.net.InetAddress;

/**
 * @author wangshuaixin
 * @Title: com.credit.cy.user.IpTest
 * @Description: TODO
 * @date 2024/04/16
 */
public class IpTest {

    @Test
    public void testIp() throws Exception {
        InetAddress localhost = InetAddress.getLocalHost();
        String host = localhost.getHostAddress();
        System.out.println(host);
    }
}