I'm using NetBeans IDE 6.9.1 for developing java/javafx applets, this netbeans version generates only java 1.6 compatible applets. But there is needed to make applets launchable on mac_os 10.5 (where default version of jvm is 1.5). I've tried to find how may I change compile options, but had no success. Could anybody help to solve this problem?

link|improve this question

What compile options have you tried? -source 5 ? – Nico Huysamen Mar 15 '11 at 13:46
Where should I input this option? – stemm Mar 15 '11 at 14:00
feedback

1 Answer

up vote 0 down vote accepted

Have a look in the project properties, there you can set the source / binary format to the version you need. But note that this will not hide methods that are only available in the Java platform version which is set in your IDE (which will most likely be 1.6 these days). This can be problematic for example with the IOException constructor accepting a cause, and other API extensions which were introduced with Java 1.6 or later.

Netbeans will happily compile this code when set to 1.5, but it will indeed not run on a 1.5 JVM. So to be absolutely sure you will also have to install a 1.5 JDK, add it to your platforms list (Tools -> Platforms) and use that to compile your project. As an additional bonus, when using the right JDK NetBeans will mark things like the missing IOException constructor right in the editor window.

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.