Archive for category: ‘jre’

howto install JRE – illustrated guide

Saturday, April 18th, 2009

I have decided to describe installation process of Java Runtime Environment one more time, now I’m adding screenshots so it will be much easier to understand:

  1. Go to http://www.java.com/en/download/
  2. Click blue button, a new page appears:
  3. After loading page, a download process should start automatically, if not click blue button again.
  4. Now, the JRE installator will be downloaded, wait until it’s completed, then run it.
  5. You will see this window:
  6. Again, wait some time, the installer will download another installer, that will install JRE, it will be started automatically:
  7. Click “Accept” and in next stage your JRE will be installed:
  8. After finished installation a new window opens saying that it has successfully installed your JRE, click “Finish”.
  9. You have installed JRE properly :)

basics part 1, getting JRE and JDK

Friday, February 27th, 2009

Let’s begin with the most important thing if you want to develop in Java. You need JRE and JDK, you probably have JRE, because it is required by some websites to display (like banking, chats, games). But what they are?

  • JRE stands for Java Runtime Environment, and it is basically software that allows you to run programs written in Java using JVM (Java Virtual Machine), if you have experience in programming in other languages, most of them are compiled to binary code, and executed directly by processor, that requires to compile different versions of programs for any other operating system or processor type. JVM acts like virtual machine (it just is a virtual machine), and executes compiled java program (java programs are compiled to bytecode)
  • JDK is a set of applications that allows you to write programs in java, it provides you a compiler, loader, debugger and more useful tools.

More information here:
http://en.wikipedia.org/wiki/JDK
http://en.wikipedia.org/wiki/JRE
http://en.wikipedia.org/wiki/Java_Virtual_Machine

Getting JRE:

  1. Go to http://www.java.com/en/download/index.jsp click blue button “Free Java Download”
  2. Download file is used to download appropriate JRE, that will start after you run it.


JDK (quite harder):

  1. Go to: http://java.sun.com/javase/downloads/index.jsp click “Download” near: “Java SE Development Kit (JDK) 6 Update xx”, where “xx” is latest java update, currently 12 (it’s on top)
  2. Than select your OS, language, and confirm reading and accepting EULA.
  3. If download didn’t start automatically click “jdk-6uxx-windows-i586-p.exe”
  4. After JDK installation we can move to another point which is installing IDE (Integrated Development Environment).


Next step soon, after that we can start real codding:)