У нас вы можете посмотреть бесплатно Windows - Install Multiple Java JDK and switch JDK as non-admin user или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This video is a step by step guide on how to manually install Java JDK as a non-administrator user from binary zip file. Also install multiple java versions and switch java version in Terminal and IDEs. *ABOUT THIS VIDEO* In this tutorial, we cover: Single Java Version installation Multiple Java Versions installations Instant switch between java versions Permanent switch between java versions Configure IDEs *LINKS & RESOURCES* 🔗 Java JDK download link: https://adoptium.net/en-GB/temurin/re... 🔗 Gist for commands: https://gist.github.com/harishkannara... ======================== *Commands* Check if profile exists -- Profile Check -- Test-Path $PROFILE -- End of Script -- Create profile if it doesn't exist -- Create Profile -- New-Item -Type File -Path $PROFILE -Force -- End of Script -- Edit the profile using notepad -- Edit Profile -- notepad $PROFILE -- End of Script -- Add a function to set java 25 -- Java 25 User Function -- function set-java-25 { $env:JAVA_HOME = "C:\Users\windows\Tools\OpenJDK25U-jdk_x64_windows_hotspot_25.0.2_10\jdk-25.0.2+10" $env:Path = $env:JAVA_HOME + "\bin;" + $env:Path } -- End of Script -- Add a function to set java 21 -- Java 21 User Function -- function set-java-21 { $env:JAVA_HOME = "C:\Users\windows\Tools\OpenJDK21U-jdk_x64_windows_hotspot_21.0.10_7\jdk-21.0.10+7" $env:Path = $env:JAVA_HOME + "\bin;" + $env:Path } -- End of Script -- Change the execution policy to execute user functions -- Change Execution Policy -- Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser -- End of Script -- Reload the profile to test the user functions -- Reload Profile -- . $PROFILE -- End of Script -- Remove the profile if the user functions is no longer needed -- Remove Profile -- Remove-Item $PROFILE -- End of Script -- #java #jdk #multiple-jdk #windows