[ blackman @ 22.02.2010. 15:51 ] @
Kod koji sam preuzeo sa neta radi u javi bez problema. Code: import java.net.InetAddress; import java.net.NetworkInterface; import java.net.SocketException; import java.net.UnknownHostException; public class MacAddress { public static void main(String[] args) { try { InetAddress address = InetAddress.getLocalHost(); NetworkInterface ni = NetworkInterface.getByInetAddress(address); if (ni != null) { byte[] mac = ni.getHardwareAddress(); if (mac != null) { for (int i = 0; i < mac.length; i++) { System.out.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""); } } else { System.out.println("Address doesn't exist or is not accessible."); } } else { System.out.println("Network Interface for the specified address is not found."); } } catch (UnknownHostException e) { e.printStackTrace(); } catch (SocketException e) { e.printStackTrace(); } } } Interesuje me može li deo koda koji ispisuje mac adresu da se smesti u neku promenljivu i neka funkcija da vrati vrednost te promenljive kroz java skript u html ili php? Code: for (int i = 0; i < mac.length; i++) { System.out.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""); } Tražim pomoć jer nisam java programer. [Ovu poruku je menjao blackman dana 22.02.2010. u 17:40 GMT+1] [Ovu poruku je menjao blackman dana 22.02.2010. u 18:45 GMT+1] [Ovu poruku je menjao blackman dana 22.02.2010. u 18:46 GMT+1] |