In a my eclipse editor if i want to switch from jdk 1.4 to
jdk 1.6 how to do that???? Initially i have jdk1.4
Answer / kris
open eclipse, select Windows then Preferences. On preferences expand java, then select "Installed JRE" option. Here you can add new JDK and make sure you select it.
| Is This Answer Correct ? | 10 Yes | 0 No |
What is the class in java?
What is the difference between the jdk 1.02 event model and the event-delegation model introduced with jdk 1.1?
What is static and a non-static inner class?
Is array dynamic in java?
Is it possible to compare various strings with the help of == operator?
Describe method overriding
Explain the use of shift operator in java. Can you give some examples?
What is arraylist class in java?
What are the different data types in java?
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
What is listnode in java?
what is deadlock? : Java thread