Is it possible to use external Java libraries with out any traditional IDE such as Eclipse or Netbeans?
What if you have deleted some files and your beloved java IDE got broken! Reinstalling didn’t do anything in resolving the problem. So, what to do now? How you can use external java libraries like javafx? If you are in such a problem or just curious enough to know how you can use these libraries without eclipse or netbeans, then this blog may help you figuring it out. I use Visual Studio Code for coding purpose, and don’t want to use any ide for java because I am accustomed to it. So I searched a little bit and came up with this solution. In this blog, I am using VSCode as a code editor and javafx as the external library. At first grab your external library from the internet. If you’re looking for the javafx library head over to https://gluonhq.com/products/javafx/ , download the zip file and extract it and copy the folder to the project folder. 20% of the work is done. You can write the java programs now. After writing the program, the main problem is to compile and run the java prog...