The Artima Developer Community
Sponsored Link

Java Buzz Forum
Difference between JDK and JRE in Java Platform

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Javin Paul

Posts: 1090
Nickname: javinpaul
Registered: Jan, 2012

Javin Paul is Java Programmer working on Finance domain.
Difference between JDK and JRE in Java Platform Posted: Feb 22, 2013 6:22 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Javin Paul.
Original Post: Difference between JDK and JRE in Java Platform
Feed Title: Java67
Feed URL: http://www.java67.com/feeds/posts/default?alt=rss
Feed Description: Java and technology tutorials, tips, questions for all programmers.
Latest Java Buzz Posts
Latest Java Buzz Posts by Javin Paul
Latest Posts From Java67

Advertisement
Java Platform offers JRE and JDK to run Java programs. JRE stands for Java runtime environment and JDK stands for Java development kit. JRE is meant for normal users, who wants to run Java program in there computer. JRE is normally used to run Java programs downloaded over internet e.g. Java Applets and Java Desktop application built using AWT and Swing. Main difference between JRE and JDK, comes from the fact that they are different tools. JDK is created for Java programmers, and contains tools required for Java programming, e.g. javac for compiling Java source files to .class files. Without JDK, you can not create Java applications and programs. By the way JDK comes with it's own JRE, but when you run Java program using java command, the JRE which comes first in System PATH is used for execution. One of the important thing to know is that, you can not run Java program from your machine if you don't have either JRE or JDK. You can also consider JDK as super set, which also contains JRE. For a normal user, installing JDK is overkill. They needs JRE only and any browser will assist them for installing JRE, as browser plugin. By the way, beware with any security issue, while installing JRE.  JRE releases sometimes has security flaws which can compromise your computer, that's the reason recently many browser has by default disabled Java. Any way, in next section we will see some more difference between JRE and JDK in Java.
Read more »

Read: Difference between JDK and JRE in Java Platform

Topic: A minimal JavaFX Presentation (in JavaFX) Previous Topic   Next Topic Topic: Breaking build is not a crime

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use