Hi am new to java and I was using java 15. Then a newer version of java came and it was 16. I downloaded it and installed it in my computer. Then I found that you can update java using java control panel. But I can't found it. Can anyone help me? Is there Java Control Panel in jdk-16 ?
According to the Oracle Java 16 documentation, the Control Panel was removed in Java 11.
It may or may not be present in other Java distros. If it is still present, you should be able to find it as ControlPanel
or jcontrol
in the Java installation's bin
or jre/bin
directory. (Or javacpl.exe
+ javacpl.cpl
on Windows.)
However as @Holger notes, it is doubtful that you would be able to use the Control Panel to update Java (for Java 11 and later) anyway. The standard Control Panel relies on Oracle-managed update servers, and it is unlikely that those servers would (or could) serve upgrades for a 3rd-party Java distro.
You are better off updating Java some other way; i.e. by downloading and running the Windows installer.
(Note that Oracle want vendors of Java-based applications to take responsibility for distributing their Java platform to end users; e.g. by shipping custom JREs generated using jlink
. If you are still advising your users / customers to upgrade Java via the Control Panel, you are "doing it wrong" ... since Java 9.)