Home > Software engineering >  VSCode No Output after Running
VSCode No Output after Running

Time:12-01

I am running into an issue running my code in vscode, I know the code is not the issue because it was working fine before I restarted the application. It shows the control box, but the code does not run.

Here is a GIF of what is happening.

I have:

  • Uninstalled and re-installed
  • Deleted all VSCode AppData folders
  • Re-installed extensions

however nothing has worked.

CodePudding user response:

is your java executable in your path environment variable?

else follow this VSCode Java Tutorial

CodePudding user response:

I managed to fix this issue by instead of just opening the .java file alone, I selected to option to "Open a Folder" where my project was located inside, and loaded my project that way - this solved my issue.

  • Related