The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Java
Anybody who's bored, try running this code and pasting the output here:
Code:
import java.net.NetworkInterface; import java.net.SocketException; import java.util.Enumeration; public class UniqueId { public static void main(String[] args) { try { Enumeration e = NetworkInterface.getNetworkInterfaces(); NetworkInterface n; while (e.hasMoreElements()) { n = (NetworkInterface)e.nextElement(); System.out.println(n.hashCode()); } System.out.println("Getting unique ID..."); } catch (SocketException e) { e.printStackTrace(); } } } The output should be like Code:
2130706433 -1062731612 Getting unique ID... |
#2
|
|||
|
|||
I'm guessing nobody's used Java before, come to think of it...
|
#3
|
||||
|
||||
I have JAVA compatibility on mozilla - don't know how to use it ?
|
#4
|
|||
|
|||
It's not an applet but code to compile and run in the command prompt (or a Java IDE)...
|
#5
|
||||
|
||||
If you told me how to, I would know
Satan |
#6
|
|||
|
|||
Don't worry, I'm going to put an applet online soon. I'm just tweaking it a bit (and relearning half my Java from two years ago).
|
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|