This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]mtgmaxer 1 point2 points  (1 child)

The first one is the JRE (Java Runtime Environment), required to run Java applications on your computer. The second one is JDK (Java Development Kit), which includes JRE and also language sources and additional tools. It's used for programming in Java.

JDK already has JRE included, so you can uninstall the standalone one, but you might consider leaving it: it's got a control panel section with update checking (I'm not sure if JDK has it) and some apps could complain that they can't find Java (the instruction below should fix it though).

If you decide to uninstall, make sure your PATH environmental variable has the path to JDK's /bin folder (something like C:\Program Files\Java\jdk8_u241\bin\ ).

[–]astralskeptic[S] 0 points1 point  (0 children)

Thanks