byte mac[] = ni.getHardwareAddress();
StringBuilder sb = new StringBuilder();
sb.append(String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""));
String macAdd = new String(sb);
System.out.println(macAdd);
It prints out the MAC address which for my Interface looks like :
70-F1-A1-A1-DF-F5
Can anyone please explain me the step :
String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : "")
Particularly what does the string %02X%s mean ?
String.formatto know about them.Xis forHex, andsis forString. Rest is on you to understand. – Rohit Jain Dec 11 '12 at 12:20macI am able to get a String70-F1-A1-A1-DF-F5and that refers to the statementsb.append(....)– saplingPro Dec 11 '12 at 12:20