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, ∼852🔥, 0💬
Popular Posts:
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module. JDK 17 Management module ...
What Is ojdbc7.jar for Oracle 12c R1? ojdbc7.jar for Oracle 12c R1 is the JAR files of ojdbc.jar, JD...
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...
JDK 17 java.compiler.jmod is the JMOD file for JDK 17 Compiler module. JDK 17 Compiler module compil...