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, ∼805🔥, 0💬
Popular Posts:
Saxon-HE (home edition) is an open source product available under the Mozilla Public License. It pro...
This package is the backport of java.util.concurrent API, introduced in Java 5.0 and further refined...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...