程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c#-遠程喚醒電腦代碼,求詳解

c#-遠程喚醒電腦代碼,求詳解

編輯:編程綜合問答
遠程喚醒電腦代碼,求詳解

private IPEndPoint point;
private UdpClient client = new UdpClient();
/**

  • 喚醒遠程機器方法
  • @param
  • mac 要喚醒的機器的MAC
  • IP
  • port udp消息發送端口 *
  • 摘要:喚醒方法為網卡提供的魔術封包功能,即以廣播模式發送6個FF加上16遍目標MAC地址的字節數組 **/ private void wakeUp(string mac, int port, string ip) { byte[] magicBytes = getMagicPacket(mac); point = new IPEndPoint(IPAddress.Parse(ip), port);//廣播模式:255.255.255.255 try { client.Send(magicBytes, magicBytes.Length, point); } catch (SocketException e) { MessageBox.Show(e.Message); } }

///
/// 字符串轉16進制字節數組
///
///
///
public static byte[] strToHexByte(string hexString)
{
hexString = hexString.Replace(" ", "");
if ((hexString.Length % 2) != 0)
hexString += " ";
byte[] returnBytes = new byte[hexString.Length / 2];
for (int i = 0; i < returnBytes.Length; i++)
returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
return returnBytes;
}

///
/// 拼裝MAC魔術封包
///
///
///
public static byte[] getMagicPacket(string macString)
{
byte[] returnBytes = new byte[102];
string commandString = "FFFFFFFFFFFF";
for (int i = 0; i < 6; i++)
returnBytes[i] = Convert.ToByte(commandString.Substring(i * 2, 2), 16);
byte[] macBytes = strToHexByte(macString);
for (int i = 6; i < 102; i++)
{
returnBytes[i] = macBytes[i % 6];
}
return returnBytes;
}
這是網上找的代碼,然後我自己建了一個按鈕。被喚醒機器的mac地址和ip地址都知道。port是什麼,是自己端口還是被喚醒機器端口,還有什麼需要注意的?

最佳回答:


參考這裡:http://bbs.zxwindow.com/forum.php?mod=viewthread&tid=140588

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved