66 lines
2.7 KiB
C#
66 lines
2.7 KiB
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
using System.Net;
|
|||
|
|
|||
|
namespace DeiNiu.Wms.CE.utils
|
|||
|
{
|
|||
|
class NetUtil
|
|||
|
{
|
|||
|
private static string[] strEncrypt = new string[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB", "AC", "AD", "AE", "AF", "AG", "AH", "AI", "AJ", "AK", "AL", "AM", "AN", "AO", "AP" };
|
|||
|
|
|||
|
private static Int32 METHOD_BUFFERED = 0;
|
|||
|
|
|||
|
private static Int32 FILE_ANY_ACCESS = 0;
|
|||
|
|
|||
|
private static Int32 FILE_DEVICE_HAL = 0x00000101;
|
|||
|
|
|||
|
private const Int32 ERROR_NOT_SUPPORTED = 0x32;
|
|||
|
|
|||
|
private const Int32 ERROR_INSUFFICIENT_BUFFER = 0x7A;
|
|||
|
|
|||
|
private static Int32 IOCTL_HAL_GET_DEVICEID = ((FILE_DEVICE_HAL) << 16) | ((FILE_ANY_ACCESS) << 14) | ((21) << 2) | (METHOD_BUFFERED);
|
|||
|
|
|||
|
[DllImport("coredll.dll", SetLastError = true)]
|
|||
|
private static extern bool KernelIoControl(Int32 dwIoControlCode, IntPtr lpInBuf, Int32 nInBufSize, byte[] lpOutBuf, Int32 nOutBufSize, ref Int32 lpBytesReturned);
|
|||
|
|
|||
|
[DllImport("Iphlpapi.dll", EntryPoint = "SendARP")]
|
|||
|
public static extern uint SendARP(uint DestIP, uint SrcIP, byte[] pMacAddr, ref uint PhyAddrLen);
|
|||
|
|
|||
|
/// 获取MAC地址
|
|||
|
public static string GetMac()
|
|||
|
{
|
|||
|
uint ip = 0;
|
|||
|
string mac = string.Empty;
|
|||
|
//取本机IP列表
|
|||
|
IPAddress[] ips = Dns.GetHostEntry(Dns.GetHostName()).AddressList;
|
|||
|
//取本机IP
|
|||
|
byte[] ipp = ips[1].GetAddressBytes();
|
|||
|
ip = (uint)((ipp[0]) | (ipp[1] << 8) | (ipp[2] << 16) | (ipp[3] << 24));
|
|||
|
//取MAC
|
|||
|
byte[] MacAddr = new byte[6];
|
|||
|
uint PhyAddrLen = 6;
|
|||
|
uint hr = SendARP(ip, 0, MacAddr, ref PhyAddrLen);
|
|||
|
if (MacAddr[0] != 0 || MacAddr[1] != 0 || MacAddr[2] != 0 || MacAddr[3] != 0 || MacAddr[4] != 0 || MacAddr[5] != 0)
|
|||
|
{
|
|||
|
mac = MacAddr[0].ToString("X2") + ":" + MacAddr[1].ToString("X2") + ":" + MacAddr[2].ToString("X2") + ":" + MacAddr[3].ToString("X2") + ":" + MacAddr[4].ToString("X2") + ":" + MacAddr[5].ToString("X2");
|
|||
|
}
|
|||
|
return mac;
|
|||
|
}
|
|||
|
|
|||
|
///获取本机IP
|
|||
|
public static string GetIpAddress()
|
|||
|
{
|
|||
|
string strHostName = Dns.GetHostName(); //得到本机的主机名
|
|||
|
IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);//Dns.GetHostByName(strHostName); //取得本机IP ,此方法已过时
|
|||
|
string strAddr = ipEntry.AddressList[1].ToString();
|
|||
|
return strAddr;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|