#could someone help me with a blunder i made in downloading & installing oracle JDK
1 messages ยท Page 1 of 1 (latest)
<@&987246399047479336> please have a look, thanks.
Here is an AI assisted attempt to answer your question ๐ค. Maybe it helps! In any case, a human is on the way ๐. To continue talking to the AI, you can use </chatgpt:1108714622413963314>.
Of course, I'd be happy to help. Can you please provide more details about the blunder you made while downloading and installing Oracle JDK? This will help me understand the issue better and provide you with appropriate guidance.
i downloaded the oracle jdk along with eclipse ide-21 to learn java , after installing the jdk and ide i tried to configure the jdk in eclipse before creating a new project but i cant find the file location in the cofigure tab and when i try to reinstall it says that the jdk already exits. even after i uninstall the jdk it says the same
cation of the JDK in Eclipse. Can you please guide me on how to configure the JDK in Eclipse?
just send me a human please
Download latest Java from https://adoptium.net/, run the installer.
Open a CMD and type java -version and javac -version, if both show your new Java version, you have successfully installed Java! ๐
https://i.imgur.com/CurMujt.png
In order to prevent issues with old installations you may want to remove them. Type where java and where javac. They should only show the new and no old entries:
https://i.imgur.com/x5k1GxG.png
If that is not the case, you may want to clean up. Therefore, type "environment variable" into the Windows search and follow the dialog. You will see two entries for a variable called Path, one for your user and one for the system. This variable tells Windows where to look for commands, like java and javac.
https://i.imgur.com/3bN9QE2.png
Edit both. Make sure that they only list the entry to your new Java installation and remove all the old entries you have seen with the where command before:
https://i.imgur.com/JAYog1U.png
Confirm and close all dialogs. Restart your CMD window and try where java and where javac again. It should only list the new installation now and nothing else.
Congratulation, your Java is now finally ready, happy coding ๐