How to set up Java in Visual Studio Code

How to install Java with Visual Studio Code (vscode) in under 5 minutes.
Install Visual Studio Code: code.visualstudio.com/
Install Java Coding Pack: code.visualstudio.com/docs/ja...
Open vscode, and create new file. Name it whatever you want, but be sure to include the .java extension.
Ex) Create a file named Test.java and add the following code. Make sure the file name is exactly the same as the class name.
class Test {
public static void main(String[] args) {
System.out.println("HELLO WORLD JAVA");
}
}
Simple click the run button and you should see the output "HELLO WORLD JAVA".
You can also create a Java project by clicking Ctrl + Shift + P at the same time. Type in java create, and click on the Java: Create Java Project.
And, there you have it! How to setup Java for Visual Studio Code in under 5 minutes.
Java Game Programming Projects Playlist:
• Java Game Programming ...
JavaScript Game Programming Projects Playlist:
• JavaScript Game Progra...
Subscribe for more coding tutorials 😄!

Пікірлер: 142

  • @KennyYipCoding
    @KennyYipCoding11 ай бұрын

    If you want to disable the parameter help box, in VSCode, on the bottom left there is a gear icon. Click on that, select settings. Search for "Java Inlay". Scroll down to where you see: *JavaScript › Inlay Hints › Parameter Names: Enabled* In the dropdown menu, select None. Scroll down a bit further and you'll see another: *Java › Inlay Hints › Parameter Names: Enabled* *Java › Inlay Hints › Parameter Names: Exclusions can be used to disable the inlay hints for methods.* Once again, in the dropdown menu, select None. Alternatively, you can open the settings.json file. To open this, press Ctrl+Shift+P at the same time, type in "settings.json" and select "Preference: Open User Settings (JSON)". Add this to the JSON file: "java.inlayHints.parameterNames.enabled": "none",

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    Like and Subscribe if you found this tutorial helpful :) ! Also, why not check out my tutorials playlist? Java Game Programming Projects Playlist: kzread.info/head/PLnKe36F30Y4Y1XQOqNsL9Fgg_p6nYhcng JavaScript Game Programming Projects Playlist: kzread.info/head/PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q

  • @cemre6263

    @cemre6263

    10 ай бұрын

    vsc gives me javac : The term 'javac' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:76 + ... Desktop\VisualStudio\Java\JavaProject\src\" ; if ($?) { javac App.jav ... + ~~~~~ + CategoryInfo : ObjectNotFound: (javac:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException PS C:\Users\cemre\Desktop\VisualStudio\Java\JavaProject\src> cd "c:\Users\cemre\Desktop\VisualStudio\Java\JavaProject\src\" ; if ($?) { javac App.java } ; if ($?) { java App } javac : The term 'javac' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:76 + ... Desktop\VisualStudio\Java\JavaProject\src\" ; if ($?) { javac App.jav ... + ~~~~~ + CategoryInfo : ObjectNotFound: (javac:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException Error pls help ig its about PATH idk how to fix it

  • @cemre6263

    @cemre6263

    10 ай бұрын

    I solved it. To solve this problem go cmd and type java -version javac -version The versions must be same ex: 17.0.8 if they are different than press windowkey + R and type sysdm.cpl than go advanced than go envromental variables and check JAVA_HOME in user variables and PATH in system variables. Be sure that you checked the first variable in PATH if they are different for example JAVA_HOME shows 17.0.8 version and 8.1.0 in PATH (first/top variable) than you must delete 8.1.0 in PATH and you should put 17.0.8 version of javac to top of PATH with clicking edit. After all click ok buttons and restart cmd and vsc. It should work now.

  • @spurthim4528

    @spurthim4528

    4 ай бұрын

    I am not able to run the program….. I mean it’s not working is there any kind of extension to be installed??

  • @LoStFoReVeRiNtImE

    @LoStFoReVeRiNtImE

    2 ай бұрын

    Use code runner extension

  • @shades3692
    @shades36929 ай бұрын

    At first, the terminal was unresponsive, but closing and opening VSC fixed my issue. Great video, man thx a lot!

  • @DrBiography
    @DrBiography10 ай бұрын

    Thank you so much for providing this video, I recently have been struggling to figure out how to run java in visual studio code, this video helped me figure it out, I just liked and subscribed.

  • @bimaltwayana2058
    @bimaltwayana20586 ай бұрын

    best tutorial ever. Best short and sweet and correctly taught how to install. Thank you so much sir.

  • @karlatorres9649
    @karlatorres96493 ай бұрын

    Thank you for making this video! I was stuck for a bit but you're very clear in your explanation! Thanks again!

  • @user-ql4fy2gp6h
    @user-ql4fy2gp6h9 ай бұрын

    thank you, this video helped me a lot. I don't really know English, but you do useful things. Thanks❤

  • @Uday_Aravind
    @Uday_Aravind10 ай бұрын

    Thank you sir, I can run the codes now. Very helpful.

  • @laloquera5066
    @laloquera50668 ай бұрын

    Thank you very much for the great video! it has helped me a lot. Many, many thanks!

  • @bunny11111
    @bunny111119 ай бұрын

    this one better be helpful cuz I've been figuring how to run a java code on visual studio.

  • @kobysmith-mccallister4893
    @kobysmith-mccallister489318 күн бұрын

    The GOAT of java tutorials

  • @russel2506
    @russel25062 ай бұрын

    Finally a 4k tutorial lol appreciate it

  • @bimaltwayana2058
    @bimaltwayana20586 ай бұрын

    already subscribed and liked and commented. more tutorials should be created like this.

  • @nabihachaiti6574
    @nabihachaiti65746 ай бұрын

    That was so easy. Thanks a lot >

  • @user-wp8mk3yg4o
    @user-wp8mk3yg4o5 ай бұрын

    thank you for the simple explanation

  • @SpideySpider
    @SpideySpider5 ай бұрын

    TIP FOR ANYONE WHO IS HAVING TROUBLE RUNNING THE SCRIPT (NOTHING HAPPENS WHEN YOU RUN IT)!!! If nothing appears in the terminal when you run it that means that you have to restart visual studio code AFTER you installed java took me a while to figure out but here it is!

  • @somename7104

    @somename7104

    5 ай бұрын

    hello how do i restart vscode? do i have to uninstall?

  • @SpideySpider

    @SpideySpider

    5 ай бұрын

    @@somename7104 no no no! just press the x button thats all!

  • @tommy757591
    @tommy7575917 ай бұрын

    thank you this helped me get started

  • @mousumibanerjee733
    @mousumibanerjee73310 ай бұрын

    Thank you for the easy setup tutorial

  • @m.m.m.4198
    @m.m.m.41985 ай бұрын

    Thanks for your help!

  • @abdelmounaimsalouani9163
    @abdelmounaimsalouani91633 ай бұрын

    thank you bro! you saved my day

  • @Fiery_drivers
    @Fiery_drivers24 күн бұрын

    helpfull video thanks mate !

  • @beyzaaaaaaaaaaaaaaaaa
    @beyzaaaaaaaaaaaaaaaaa8 ай бұрын

    Hello, I want to ask something. Every time I open the vs code, a message saying "Java projects are opening, check the details" appears. It wasn't there before, is it normal? The laptop gets very hot while this is happening, that's why I asked.

  • @ShubhamKumar-dd7ll
    @ShubhamKumar-dd7llАй бұрын

    thanks, clearly explained

  • @PappuManasa-qq6ub
    @PappuManasa-qq6ub17 күн бұрын

    you heped me alot...thankyou soo much💗

  • @studytimewithjency
    @studytimewithjency3 ай бұрын

    Smooth!! thanks

  • @AlgoJaz
    @AlgoJaz10 ай бұрын

    how do you get rid of the path line?

  • @samcodebreakerkenya
    @samcodebreakerkenya10 ай бұрын

    Thanks alot for this. I appriciate this simple video

  • @joshh2497
    @joshh24979 ай бұрын

    do i need to create a code in SRC folder ? or i can do in other file that it not connect in JavaProject? thank you for answer in advance!!

  • @ielinDaisy
    @ielinDaisy2 ай бұрын

    thanks man 💯

  • @snapesrds5766
    @snapesrds576610 ай бұрын

    Thanks a lot Bro.

  • @beyzaaaaaaaaaaaaaaaaa
    @beyzaaaaaaaaaaaaaaaaa8 ай бұрын

    Thanks firstly i downloaded it like you did. But now im gonna download latest version from oracle. (Teacher request )So there will be two jdk on my laptop. İs that could cause any problem? and how can i use my latest jdk on vscode (after add path )

  • @pauldotto5130
    @pauldotto5130Ай бұрын

    Thank you!

  • @RohitItgikar-lb5mz
    @RohitItgikar-lb5mz10 ай бұрын

    Thank you so much bro 🙏🙏🙏🙏

  • @zavqiddintojiboev5805
    @zavqiddintojiboev5805Күн бұрын

    great job!

  • @MihNguyen238
    @MihNguyen2382 ай бұрын

    Wow, thanks! Somehow Eclipse doesn't work but VSC works perfectly!

  • @Ali-EditsGS
    @Ali-EditsGS8 күн бұрын

    thanks bro i appriciate it

  • @MotivationHunt_manoj
    @MotivationHunt_manoj8 ай бұрын

    thanks sir its really worked

  • @Nornfang
    @Nornfang9 ай бұрын

    As a man who hates eclipse, thank you

  • @DavidCourtney
    @DavidCourtney8 ай бұрын

    I'm just trying to run the Hello World example, but when I click on Run, I get "Homework1.java is a non-project file, only syntax errors are reported" in the Problems tab.

  • @duhanavc6773

    @duhanavc6773

    6 ай бұрын

    did you solve it I get the same message

  • @DavidCourtney

    @DavidCourtney

    6 ай бұрын

    @@duhanavc6773 In my case, the problem turned out to be that I had a bad setting in the settings.json file located at C:\Users\\AppData\Roaming\Code\User I deleted the settings.json file and everything started working. The reason my settings.json file was messing up Java was because I had been experimenting with Rust programming about a year prior, and my settings.json had some lines in there to get cargo working for Rust. And for whatever reason, those settings were conflicting with what Java was trying to do. Rather than figure out how to make the settings.json file work with Java while keeping my Rust settings, I opted to just delete the settings.json file ... and Java started working for me. Given that my particular situation probably doesn't match yours, I'm guessing what I did won't help you, but you can give it a try.

  • @lyrical_beats8609
    @lyrical_beats86097 ай бұрын

    Thank you so much madam 🤗👏

  • @navascrisis4626
    @navascrisis46268 ай бұрын

    Thanks Bossman❤

  • @Y-elloWorld
    @Y-elloWorld4 ай бұрын

    Thanks it works now, precise information, no dilly-dallying.

  • @Kzar101
    @Kzar1013 ай бұрын

    if i try ro run the code is says 'javac' is not recognized as an internal or external command, operable program or batch file.

  • @rajendra9812
    @rajendra98122 ай бұрын

    Thank you sir

  • @emperordrex5927
    @emperordrex59278 ай бұрын

    Please I need help I set up and installed it but it isn't showing on my cmd also I can't tag my java file in my html it just won't work

  • @mdnishad2432
    @mdnishad24328 ай бұрын

    Thanks a lot

  • @xplozion7603
    @xplozion760310 ай бұрын

    ty! :)))))

  • @belLuh20
    @belLuh2021 күн бұрын

    I just wanna ask, when I'm going to run the program, there will suddenly pop up of jdk compile project. What's that development kit?

  • @barnevernet_in_norway7268
    @barnevernet_in_norway7268Ай бұрын

    Thank you

  • @ahmedhassan5783
    @ahmedhassan57838 ай бұрын

    is it free unlike the C# development kit extension which requires subscribtion?

  • @victors6917
    @victors6917Ай бұрын

    do i have to install java on the same directory as vsCode?

  • @zauliam
    @zauliamАй бұрын

    I follow every steps, but when I type java --version in cmd, it keep giving me the message 'java' is not recognized as an internal or external command, operable program or batch file. Please help me figure out how to solve it.

  • @user-kr3go6dx6v
    @user-kr3go6dx6v4 ай бұрын

    can you post a video of settings of java to allow pakages in java to work as like if first line is package package1 is therethen my code does not work eventhough everything is correct

  • @khalilebdelli6199
    @khalilebdelli61999 ай бұрын

    java -version The system cannot find the file C:\ProgramData\Oracle\Java\javapath\java.exe. i get this error when i run the java -version in my pc

  • @Mario-xk7kh
    @Mario-xk7kh8 ай бұрын

    My code doesn't run as a stand alone file as you did it but it did work in a project file.

  • @Azero-hr4cr
    @Azero-hr4cr9 ай бұрын

    I did all the steps but still my code did not appear

  • @meshomagdy1380
    @meshomagdy13802 ай бұрын

    How did you create the starter code ?

  • @seanashleycastillo7095
    @seanashleycastillo70953 ай бұрын

    I don't know why but I can't download the extension for the VScode right from the start

  • @cristofervillalobos2768
    @cristofervillalobos27684 ай бұрын

    ty sir.

  • @karensampouw
    @karensampouw8 ай бұрын

    i already tried to download the java pack but it says failed

  • @saiteja7985
    @saiteja7985Ай бұрын

    TQ sir😊😊

  • @Shivali_
    @Shivali_5 ай бұрын

    thank you so much for simplifying..

  • @shailendra4912
    @shailendra49129 ай бұрын

    Thx

  • @doztech
    @doztech5 ай бұрын

    why output not working only terminal?

  • @swarooptej7976
    @swarooptej79765 ай бұрын

    thank u

  • @aaoooz
    @aaoooz9 ай бұрын

    thanks

  • @bubule_
    @bubule_4 ай бұрын

    why i'm in the cmd in tape: java --version , my cumputeur said eror, and wen y want creat my new files he said : Sorry, something went wrong activating IntelliCode support for Java. Please check the "Language Support for Java" and "VS IntelliCode" output windows for details. and also: Please download and install a JDK to compile your project. You can configure your projects with different JDKs by the setting 'java.configuration.runtimes' what i need to made in this situation ? (sorry for my bad english)

  • @b-yangalecio
    @b-yangalecio5 ай бұрын

    What if there's installed java already?

  • @PrathameshTusharPatil
    @PrathameshTusharPatil16 күн бұрын

    hello sir when i started to run my java program ,it is taking time and showing some issue so what could be the problem ?? its always showing the following content : Initiating server activation Request to kill LSP server. Cannot kill: current process is None Launching Oracle Java SE Language Server with default system JDK and userdir

  • @abiabasd8120
    @abiabasd81203 ай бұрын

    tnxs

  • @sivadarshini3165
    @sivadarshini31658 ай бұрын

    Am not getting Run|debug in my program!

  • @cubesolver543
    @cubesolver543Ай бұрын

    i am getting application error when i click on java pack

  • @nhp.1411
    @nhp.141111 ай бұрын

    I write "System.out.print("Hello World"); " it automatically changes to "System.out.print(s:"Hello World");" how to turn it off

  • @nhp.1411

    @nhp.1411

    11 ай бұрын

    help me

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    @@nhp.1411 check my pinned comment!

  • @TwitchBox_999
    @TwitchBox_9995 ай бұрын

    good

  • @akhiln3722
    @akhiln37229 ай бұрын

    how to set c in vs cod ???

  • @retarded.18
    @retarded.186 ай бұрын

    the installer get stuck at last

  • @tayyabaamanat9968
    @tayyabaamanat9968Ай бұрын

    hey java is not downloading it shows notification internet problem whereas internet is working greatly

  • @rhonjaycedrickcastillon2530
    @rhonjaycedrickcastillon25304 ай бұрын

    why does my vscode not working no matter what i do

  • @nileshchoudhary4087
    @nileshchoudhary408710 ай бұрын

    Idk after opening vs code ita sending me to redhat website ? I followed your steps

  • @lemmeGoHome

    @lemmeGoHome

    10 ай бұрын

    same is happening with me. it's wanting me to install a JDK from there

  • 3 ай бұрын

    Yeah, apparently we need to download a JDK separately for the Java programs to get compiled..

  • @KadduMan
    @KadduMan11 ай бұрын

    why is that x: coming just before string sir, i am also facing the same issue

  • @avindrasookram3348

    @avindrasookram3348

    11 ай бұрын

    same no one has a solution for this

  • @avindrasookram3348

    @avindrasookram3348

    11 ай бұрын

    I found the answer : If you do not want to have them in your editor, you can set the setting java.inlayHints.parameterNames.enabled to none

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    Thanks for bringing this up! I posted the solution as a pinned comment

  • @muhammadhabib9456
    @muhammadhabib94565 ай бұрын

    bro i got a build failed error, like i am starting to get stressed out not getting this shit fixed as i want to learn java.

  • @marklouiecaballero2307
    @marklouiecaballero23075 ай бұрын

    What about the path?

  • @shankarraj3433
    @shankarraj3433 Жыл бұрын

    👍

  • @duhanavc6773
    @duhanavc67736 ай бұрын

    do we have to download jdk what it is for

  • @KennyYipCoding

    @KennyYipCoding

    6 ай бұрын

    It’s included in the kit in the video, you need it to compile and run java

  • @twoz9936
    @twoz993611 ай бұрын

    why when i click ctrl+shift+p the java create project is not showing

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    You have to search for it, it won’t automatically show it unless you’ve used the command before

  • @twoz9936

    @twoz9936

    11 ай бұрын

    @@KennyYipCoding yes, i've been search it but its still not show up. Now i'm just try to install jdk 17 to replace my jdk 20 and hope the java project will show

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    Did you install the Java code pack for vscode?

  • @KennyYipCoding

    @KennyYipCoding

    11 ай бұрын

    There are also vscode extensions for Java included in the installation

  • @twoz9936

    @twoz9936

    11 ай бұрын

    @@KennyYipCoding finally bro, i found the problem that the pack doesn't automatic install the PROJECT MANAGER FOR JAVA. So the problem only on this thing. Thankyou so much bro

  • @alvinkennethmayega1113
    @alvinkennethmayega11135 ай бұрын

    Please help! At 2:36 When i try to run java --version it gives me an error instead. Help!!!

  • @bubule_

    @bubule_

    4 ай бұрын

    same for me

  • @bubule_

    @bubule_

    4 ай бұрын

    do u have find the solution ?

  • @alvinkennethmayega1113

    @alvinkennethmayega1113

    4 ай бұрын

    @@bubule_ I ended up reinstalling java

  • @bubule_

    @bubule_

    4 ай бұрын

    @@alvinkennethmayega1113 ok thank's

  • @mikijanicki2160
    @mikijanicki21606 ай бұрын

    avast tells me that the coding pack is a virus, is it actually?

  • @KennyYipCoding

    @KennyYipCoding

    6 ай бұрын

    No, it comes directly from Microsoft

  • @ajdndbdjbdj
    @ajdndbdjbdj8 ай бұрын

    God , i got a new lap top and they installed the purple version for it , im so mad i gotta download it again

  • @nathanwillett6918

    @nathanwillett6918

    6 ай бұрын

    can you have both version installed on your computer?

  • @ajdndbdjbdj

    @ajdndbdjbdj

    6 ай бұрын

    @@nathanwillett6918 idk i didn't even download it again, i just installed another one

  • @ohio01
    @ohio014 ай бұрын

    mine is dont work i followed the steps :\

  • @jeromemendoza495
    @jeromemendoza49511 ай бұрын

    why there's no run and debug button in mine

  • @luisduarte5097

    @luisduarte5097

    10 ай бұрын

    Part of an extension pack you have to download

  • @hakti7548

    @hakti7548

    5 ай бұрын

    Which one?

  • @spurthim4528

    @spurthim4528

    4 ай бұрын

    Or else it might have been hidden So click the 3 button on top right side u’ll find Run or debug

  • @meenapandey1473

    @meenapandey1473

    2 ай бұрын

    ​@@hakti7548Code runner

  • @ammapalliharshavardanreddy9795

    @ammapalliharshavardanreddy9795

    2 ай бұрын

    Install code runner extension!

  • @cemre6263
    @cemre626310 ай бұрын

    when i write java --version to cmd it says Unrecognized option: --version Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. And it gives error in vsc: javac : The term 'javac' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:60 + ... "c:\Users\cemre\Desktop\VisualStudio\Java\" ; if ($?) { javac deneme. ... + ~~~~~ + CategoryInfo : ObjectNotFound: (javac:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException

  • @cemre6263

    @cemre6263

    10 ай бұрын

    I solved it. To solve this problem go cmd and type java -version javac -version The versions must be same ex: 17.0.8 if they are different than press windowkey + R and type sysdm.cpl than go advanced than go envromental variables and check JAVA_HOME in user variables and PATH in system variables. Be sure that you checked the first variable in PATH if they are different for example JAVA_HOME shows 17.0.8 version and 8.1.0 in PATH (first/top variable) than you must delete 8.1.0 in PATH and you should put 17.0.8 version of javac to top of PATH with clicking edit. After all click ok buttons and restart cmd and vsc. It should work now.

  • @KennyYipCoding

    @KennyYipCoding

    10 ай бұрын

    Thanks for sharing this!

  • @Blaze_Knowhow
    @Blaze_Knowhow10 ай бұрын

    Do i still need to download OpenJDK for this to work?

  • @KennyYipCoding

    @KennyYipCoding

    10 ай бұрын

    should be enough to just download the vscode java coding pack as it includes the JDK already.

  • @Blaze_Knowhow

    @Blaze_Knowhow

    10 ай бұрын

    @@KennyYipCoding okay thank you

  • @bimaltwayana2058
    @bimaltwayana2058 Жыл бұрын

    😃

  • @iogilarb
    @iogilarb3 ай бұрын

    i hate java, but i love it, why? 😢

  • @jessicagerlaban7125
    @jessicagerlaban71259 ай бұрын

    3:02

  • @Rex_ults
    @Rex_ults5 ай бұрын

    bro you married asking for a friend?

  • @3a7anton
    @3a7anton5 ай бұрын

    Thank you bro @KennyYipCoding

  • @itsam00n
    @itsam00n4 ай бұрын

    Thank you

  • @abirbiba3307
    @abirbiba33077 ай бұрын

    Thank you

Келесі