| Author |
Hard disk serial number
|
siddhu Math
Ranch Hand
Joined: Aug 10, 2006
Posts: 46
|
|
Hay Dudes Its very urgent for me i wann retrieve hard disk serial number, can any oe provide me or suggest me how to get. i do not want to use jni to do this ... Thanks
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12928
|
|
|
There is nothing in the standard Java API to do something very platform-specific like this, so you won't be able to do this without some native code and using JNI to call the native code.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
You could write a non-Java application that gets the required information (you will need a version of the program for each platform you intend to run your Java program on) and then use Runtime.exec() or ProcessBuilder to call the correct program for the OS you are running on (use System.getProperty("os.name") to find this). As long as all the programs return the information in the same format, you can use common code to parse the result.
|
Joanne
|
 |
 |
|
|
subject: Hard disk serial number
|
|
|