我正在尝试编写一个可以唤醒我的计算机的应用程序。我想我有解决方案,但由于某种原因它不起作用。
下面的脚本是一类。那是用 mainactivity 中的 mac 和 broadcastip 调用的:
Wake.wakeup(broadcastIP, mac);
public class Wake {
BroadcastIP 和 mac 将是字符串。
public static void wakeup(String broadcastIP, String mac) {
if (mac == null) {
return;
}
包应该算好。
try {
byte[] macBytes = getMacBytes(mac);
byte[] bytes = new byte[6 + 16 * macBytes.length];
for (int i = 0; i < 6; i++) {
bytes[i] = (byte) 0xff;
}
for (int i = 6; i < bytes.length; i += macBytes.length) {
System.arraycopy(macBytes, 0, bytes, i, macBytes.length);
}
InetAddress address = InetAddress.getByName(broadcastIP);
DatagramPacket packet = new DatagramPacket(bytes, bytes.length, address, 9);
DatagramSocket socket = new DatagramSocket();
socket.send(packet);
socket.close();
}
catch (Exception e) {
}
}
从mac的转换应该是好的。这在有意唤醒时被调用。
private static byte[] getMacBytes(String macStr) throws IllegalArgumentException {
byte[] bytes = new byte[6];
if (macStr.length() != 12)
{
throw new IllegalArgumentException("Invalid MAC address...");
}
try {
String hex;
for (int i = 0; i < 6; i++) {
hex = macStr.substring(i*2, i*2+2);
bytes[i] = (byte) Integer.parseInt(hex, 16);
}
}
catch (NumberFormatException e) {
throw new IllegalArgumentException("Invalid hex digit...");
}
return bytes;
}
}
我很感激你能给我的每一个帮助/提示。