How do I use Java preprocessors to determine what OS I am compiling on?
feedback
|
|
Try this:
From How do I programmatically determine operating system in Java? BTW Java doesn't have a preprocessor...one of the annoying things I discovered. | |||||||
feedback
|
|
There is no Java preprocessor and no ability to conditionally compile. There is a very primitive debugging feature built in whereby the compile is allowed to delete conditional blocks with a constant condition which is false to facilitate elimination of debug code - but I don't recall if the spec requires or allows the code to be deleted from the compiled class.
If you want to detect the O/S at runtime and do different things on different platforms, there are a number of system properties required in every JVM which are documented in
| |||
|
feedback
|