Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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 ?

share|improve this question
Can you please reference the part of Javadoc that discusses this and indicate exactly what in that text you have trouble understanding? – Marko Topolnik Dec 11 '12 at 12:18
Did you try to search for various format specifier on google? See the documentation of String.format to know about them. X is for Hex, and s is for String. Rest is on you to understand. – Rohit Jain Dec 11 '12 at 12:20
@MarkoTopolnik I do not understand how from the byte array mac I am able to get a String 70-F1-A1-A1-DF-F5 and that refers to the statement sb.append(....) – saplingPro Dec 11 '12 at 12:20
Your 3rd statement I suppose is inside a for loop right? – Rohit Jain Dec 11 '12 at 12:22
@RohitJain yeah. – saplingPro Dec 11 '12 at 12:23
show 2 more comments

1 Answer

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

% starts a format spec

0 means left-pad with zero

2 means 2 digits wide

X means hexadecimal output

s means string

so we're outputting a two-digit hex number followed by a string. I know the Formatter javadoc is a bit dense, but this is really what it's for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.