|
|
|
1000 Java Tips ebook
|
|
 

Free "1000 Java Tips" eBook is here! It is huge collection of big and small Java
programming articles and tips. Please take your copy here.
Take your copy of free "Java Technology Screensaver"!. |
|
Q: I'd like to know how to know which operating system java application
|
JavaFAQ Home » Daily Tips

Question: I'd like to know how to know which operating system java application is running on.
Answer: You could try using the system Properties.
e.g.
Properties prop = System.getProperties();
String osString = prop.getProperty( "os.name" );
Java Code Examples for the Class:
Properties Printer Friendly Page
Send to a Friend
..
Search here again if you need more info!
|
|
|