Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java でバイト [] として表される MAC アドレスがあり、通常は 16 進数の文字列として表されます。できるだけ簡単にこれを行うにはどうすればよいですか?
バイト配列の長さは 6 です。
これを試して:
String hexValue = String.format("%02X:%02X:%02X:%02X:%02X:%02X", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);