I know this question must've been asked alot of times already, but I've got some specific questions that need answering to.
The underlying question I am trying to ask here is What's the difference between JRE/JDK/IDE
.
I understand that JRE has the run time libraries, JDK contains the compiler/debugger and everything else that JRE has. IDE is my Eclipse.
Question 1 : If I am trying to develop something in Java, is it necessary that I need JDK for it? Because as I understand, I can make do with IDE + JRE. My IDE provides me with compiler/debugger, and I will refer the JRE from my IDE. So, it should be alright right?
Question 2 : From the above question, is it safe to say that IDE contains JDK in it already?
Question 3 : When exactly will I need just the JRE and nothing else? i.e. under what circumstances will only having JRE suffice. If I were to emulate such behaviour, what are the necessary steps required. (I can make it more clear if you have not understood it. )
Thanks