Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
Uninstall Old JDK from Mac Computer
How to uninsatll old JDK from my Mac computer? I don't need it any more.
✍: FYIcenter
If you want to uninstall JDK from your Mac computer,
you can follow these steps:
1. Verify versions of installed JDK:
fyicenter$ ls -l /Library/Java/JavaVirtualMachines drwxr-xr-x@ 5 root wheel 170 Feb 13 2020 jdk-13.jdk drwxr-xr-x@ 3 root wheel 102 Mar 5 2020 jdk-14.0.1.jdk drwxr-xr-x 3 root wheel 102 Oct 12 2020 jdk-15.jdk drwxr-xr-x 3 root wheel 102 Nov 5 23:22 jdk-17.0.5.jdk
2. Remove older versions of JDK:
fyicenter$ sudo rm -rf /Library/Java/JavaVirtualMachines/jdk-13.jdk fyicenter$ sudo rm -rf /Library/Java/JavaVirtualMachines/jdk-14.0.1.jdk/ fyicenter$ sudo rm -rf /Library/Java/JavaVirtualMachines/jdk-15.jdk/
3. Verify the latest version of JDK:
fyicenter$ javac -version javac 17.0.5 fyicenter$ java -version java version "17.0.5" 2022-10-18 LTS Java(TM) SE Runtime Environment (build 17.0.5+9-LTS-191) Java HotSpot(TM) 64-Bit Server VM (build 17.0.5+9-LTS-191, mixed mode, sharing)
⇐ Java Deployment Personal Cache on Mac Computer
2023-09-03, ∼1055🔥, 0💬
Popular Posts:
JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar .You can b...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
JDK 17 jdk.jconsole.jmod is the JMOD file for JDK 17 JConsole tool, which can be invoked by the "jco...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...