Academic Work Personal
|
Java /
Extract the MAC address
ProblemYou want a portable Java solution for extracting the MAC address. UpdateI sent the patch below to Johann and he added this feature to version 3.2. So with new version you can get the MAC address easily. SolutionJohann Burkard made a freely available package for generating UUIDs (or GUIDs) in Java. For this, he needs to extract the MAC address but unfortunately he doesn't provide a In private static String macAddress = null; // new public static String getMacAddress() { // new return macAddress; } static { // String macAddress = null; // put to remark // from here unchanged try { Class.forName("java.net.InterfaceAddress"); macAddress = Class.forName("com.eaio.uuid.UUIDGen$HardwareAddressLookup").newInstance().toString(); } I sent Johann a mail, hopefully it'll be added in a future release. Update: Johann promised to put it in version 3.2 :) Usage: String macAddress = UUIDGen.getMacAddress(); System.out.println(macAddress); More infoSee http://en.wikipedia.org/wiki/Mac_address for more info. The important stuff is that a MAC address is 6 bytes long, i.e. 48 bits. Hex String to int conversionThe following example is from http://mindprod.com/jgloss/hex.html: /* convert a hex String to int */ // Note, there is no lead 0x, case insensitive String g = "af0c99"; int i = Integer.parseInt( g.trim(), 16 /* radix */ ); For more info on conversions, refer to http://mindprod.com/jgloss/hex.html . |
![]() anime | bash | blogs | bsd | c/c++ | c64 | calc | comics | convert | cube | del.icio.us | digg | east | eBooks | egeszseg | elite | firefox | flash | fun | games | gimp | google | groovy | hardware | hit&run | howto | java | javascript | knife | lang | latex | liferay | linux | lovecraft | magyar | maths | movies | music | p2p | perl | pdf | photoshop | php | pmwiki | prog | python | radio | recept | rts | scala | scene | sci-fi | scripting | security | shell | space | súlyos | telephone | torrente | translate | ubuntu | vim | wallpapers | webutils | wikis | windows Blogs and Dev. * Ubuntu Incident Places Debrecen | France | Hungary | Montreal | Nancy Notes Hobby Projects * Jabba's Codes Quick Links [ edit ] |