Nu, om java te compileren en te runnen in Notepad++ is de entry op een bepaald forum best goed:
Probleem met dit voorbeeld is dat het enkel werkt als je Java bestand(en) in de Notepad++ map staan op je harde schijf.I've found the way to compile & run Java applications from Notepad++ with just one hotkey.
First of all, go to the directory where you have installed Notepad++ and create a new file called CompileJava.bat
then open it and enter these lines:Save the file and exit.Code: Selecteer alles
@echo off path=%path%;"<path to your BIN directory of JDK>" @echo on javac %1 java %2 pause
After that, open Notepad++ and press F5. Fill in the box in the small window that appears with:
Code: Selecteer alles
$(NPP_DIRECTORY)\CompileJava.bat $(FILE_NAME) $(NAME_PART)
Veel handiger zou zijn moest je dit kunnen waar dan ook op je harde schijf.
Zelf ken ik niet genoeg van batchcode om te weten hoe dit aan te passen...
Heeft iemand enig idee hoe dit op te lossen?