I have the existing codebase which runs on java6, but the current requirement is to upgrade the Java from java6 to java 7, Can anyone please let me know the steps, how can i upgrade it using eclipse(because i am using eclipse as IDE)?.
Asked
Active
Viewed 745 times
-3
1 Answers
0
Upgrading code requires almost nothing, as Java 7 is backwards compatible with Java 6 except for a few things, mostly behavioral and in the standard library. And as said here, it should mostly just work:
What do I need to do?
Option 1 – “Just run”
Upgrading your eclipse project has been asked and answered several times, like here.
1. Uninstall Jav6 from system 2. Install Java 7 and 3. Point to Java 7. Is it correct? – user3371058 Aug 12 '15 at 07:26