在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 源码:获取本地网络信息(ip/mac/计算机名/dns等)以及网络对时(校对时间)

源码:获取本地网络信息(ip/mac/计算机名/dns等)以及网络对时(校对时间)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.54M
  • 下载次数:56
  • 浏览次数:427
  • 发布时间:2019-12-18
  • 实例类别:C#语言基础
  • 发 布 人:小山呀
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 设计 程序 设置 网络

实例介绍

【实例简介】


主要功能如下:

1)本地网络信息的获取

计算机名称、IP地址、网卡地址、DNS设置、安装的协议、提供的服务、TCP/IP运行信息。

2)修改本地计算机的网络设置

3)采用ntp协议从internet上某个时间服务器,获取时间信息,准确地更新本地机时钟,支持手动、定时自动两种方式

可使用VS 2012运行此程序。


【实例截图】


from clipboard


from clipboard




【核心代码】

class TimeUtil
    {
        // 获取本地时间
        public static DateTime getLocalTime()
        {
            SystemTime sysTime = new SystemTime();
            TimeAPI.GetLocalTime(ref sysTime);
            return SystemTime2DateTime(sysTime);
        }

        // 设置本地时间
        public static bool setLocalTime(DateTime dateTime)
        {
            if (PrivilegeUtil.grantPrivilege(PrivilegeConstants.SE_SYSTEMTIME_NAME))
            {
                SystemTime sysTime = DateTime2SystemTime(dateTime);
                bool success = TimeAPI.SetLocalTime(ref sysTime);
                if (!PrivilegeUtil.revokePrivilege(PrivilegeConstants.SE_SYSTEMTIME_NAME))
                {
                    Program.writeMsg("撤权失败: 更改系统时间");
                }
                return success;
            }
            Program.writeMsg("授权失败: 更改系统时间");
            return false;
        }

        // 获取系统时间
        public static DateTime getSystemTime()
        {
            SystemTime sysTime = new SystemTime();
            TimeAPI.GetSystemTime(ref sysTime);
            return SystemTime2DateTime(sysTime);
        }

        // 获取网络时间
        public static DateTime getWebTime()
        {
            // default ntp server
            const string ntpServer = "ntp1.aliyun.com";

            // NTP message size - 16 bytes of the digest (RFC 2030)
            byte[] ntpData = new byte[48];
            // Setting the Leap Indicator, Version Number and Mode values
            ntpData[0] = 0x1B; // LI = 0 (no warning), VN = 3 (IPv4 only), Mode = 3 (Client Mode)

            IPAddress[] addresses = Dns.GetHostEntry(ntpServer).AddressList;
            // The UDP port number assigned to NTP is 123
            IPEndPoint ipEndPoint = new IPEndPoint(addresses[0], 123);

            // NTP uses UDP
            Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
            socket.Connect(ipEndPoint);
            // Stops code hang if NTP is blocked
            socket.ReceiveTimeout = 3000;
            socket.Send(ntpData);
            socket.Receive(ntpData);
            socket.Close();

            // Offset to get to the "Transmit Timestamp" field (time at which the reply 
            // departed the server for the client, in 64-bit timestamp format."
            const byte serverReplyTime = 40;
            // Get the seconds part
            ulong intPart = BitConverter.ToUInt32(ntpData, serverReplyTime);
            // Get the seconds fraction
            ulong fractPart = BitConverter.ToUInt32(ntpData, serverReplyTime 4);
            // Convert From big-endian to little-endian
            intPart = swapEndian(intPart);
            fractPart = swapEndian(fractPart);
            ulong milliseconds = (intPart * 1000) ((fractPart * 1000) / 0x100000000UL);

            // UTC time
            DateTime webTime = (new DateTime(1900, 1, 1, 0, 0, 0, DateTimeKind.Utc)).AddMilliseconds(milliseconds);
            // Local time
            return webTime.ToLocalTime();
        }

实例下载地址

源码:获取本地网络信息(ip/mac/计算机名/dns等)以及网络对时(校对时间)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 1875794774 发表于: 2020-03-08 07:08 43
2020年3月8日07:08:19带走了

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警