Compile java 1.5 compatible applications under NetBeans IDE 6.9.1?

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.

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.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions