PS: I am new to Java.
feedback
|
|
If you compile your code with 1.6 then it will not run on 1.5. If you want it to run in 1.5 then you can compile the code with 1.5 and it would be able to run on both. Try compiling with 1.5 and if there are errors then post them. The only way it will not compile on 1.5 is if you use specific 1.6 enhancements in your code. To answer the real question.
See here for more details. | |||||||||
feedback
|
|
Yes, you can. See http://java.sun.com/javase/6/docs/technotes/tools/windows/javac.html and look for the section "Cross-Compilation Options". In short, you need to specify -target=1.5 to javac. Ant also supports this flag, of course. | |||||||||||
feedback
|
|
Have a look at the javac "-source" and "-target" options: http://java.sun.com/javase/6/docs/technotes/tools/windows/javac.html
+
| |||||
feedback
|
|
It all depends on what APIs you are using. Things like Swing, Instrumentation, JConsole etc change over time. If you try: http://www.coderanch.com/t/382318/Java-General/java/New-Features-Java it has links to the pages indicating the differences between each of the last major versions, with: http://java.sun.com/javase/6/webnotes/features.html being a list of the changed/new features in the latest version. Hopefully that'll give you some idea. And of course then you'll need to compile it under 1.5 to get it to run with that JRE. | |||||
feedback
|