Unity获取本机IP地址

这篇博客介绍了两种在Unity中获取本机IP地址的方法。第一种方法适用于Unity2018.4.0f1及VS2017环境下,通过遍历网络接口获取无线局域网适配器的IP地址。第二种方法在Unity2017.4.35版本下有效,但已在Unity2018.2之后被弃用,通过Network.player.ipAddress获取。
摘要由CSDN通过智能技术生成

目录

一.目的

1.想知道:Unity获取本机IP地址

二.参考

三.操作:一:完成:能够获取到IP地址

1.版本

1.运行结果

1.代码:

三.操作:二:完成:亲测有效的,已经项目中使用了,but:在Unity2018.2版本后就弃用了

1.版本

1.代码


 

 

一.目的

1.想知道:Unity获取本机IP地址

 

二.参考

 

三.操作:一:完成:能够获取到IP地址

1.版本

  1. unity2018.4.0f1
  2. vs2017
  3. windows10 64位

 

1.运行结果

 

1.代码:

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System;
using System.Net.NetworkInformation;


    /// <summary>
    /// 获取本机IP
    /// </summary>
    /// <returns>string :ip地址</returns>
    public string GetIP()
    {
        string output = "";

        foreach (NetworkInterface item in NetworkInterface.GetAllNetworkInterfaces())
        {
            NetworkInterfaceType _type1 = NetworkInterfaceType.Wireless80211;  //无线局域网适配器 

            if ((item.NetworkInterfaceType == _type1) && item.OperationalStatus == OperationalStatus.Up)
            {
                foreach (UnicastIPAddressInformation ip in item.GetIPProperties().UnicastAddresses)
                {
                    if (ip.Address.AddressFamily == AddressFamily.InterNetwork)
                    {
                        output = ip.Address.ToString();
                    }
                }
            }
        }
        return output;
    }

 

 

三.操作:二:完成:亲测有效的,已经项目中使用了,but:在Unity2018.2版本后就弃用了

1.版本

  1. unity2017.4.35
  2. VS2017
  3. windows10 64位

 

1.代码

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MyIPAddress : MonoBehaviour
{
    /// <summary>string:本机IP地址,电脑上面除wifi以外的适配器都禁用</summary>
    [Tooltip("string:本机IP地址")]
    [Header("string:本机IP地址")]
    [HideInInspector]
    public string str_ipAddress = "";

    // Use this for initialization
    void Start()
    {
      //  Debug.Log(Network.player.ipAddress);
    }

    // Update is called once per frame
    void Update()
    {

    }

    /// <summary>
    /// 功能: 设置获取本机IP地址
    /// </summary>
    public string SetGet_str_ipAddress
    {
        set { str_ipAddress = value; }
        get
        {
            str_ipAddress = Network.player.ipAddress;
            return str_ipAddress;
        }
    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值