How do I use Java preprocessors to determine what OS I am compiling on?

link|improve this question

12  
Uh, what Java preprocessor? – James McNellis Jan 7 '11 at 2:31
@James: spp, of course! ;-) – Chris Jester-Young Dec 1 '11 at 22:56
feedback

2 Answers

Try this:

System.getProperty("os.name")

From How do I programmatically determine operating system in Java?

BTW Java doesn't have a preprocessor...one of the annoying things I discovered.

link|improve this answer
1  
That will return the OS at runtime, not compile time. – Software Monk Jan 7 '11 at 2:43
Hm...good point...but I guess I was thinking that if you're running the compiler, then chances are you'll know what OS the compiler is running on... – Inspire48 Jan 7 '11 at 2:46
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.

static final boolean DEBUG=false;


...


if(Debugging.DEBUG) {
    // some code which the compile may (or must?) eliminate
    }

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 System.getProperties(). See the JavaDoc, relative it's installed or network location:

api/java/lang/System.html#getProperties()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.