It is a really simple thing but I cannot get my head around it. I have looked at plenty of StackOverFlow post and as well as on internet.
My goal is to create a .bat which will open cmd and execute my Main.java into command prompt. Easy isn't it, but I have got confused about how?
Below I am writing steps which my batch file should perform
My file will reside next to all my .java so I am assuming I don't need to give explicit path.
My understanding so far by research:
Save as: name.bat
Any help will be appreciated. Thank you.
open notepad
write
@echo off
javac Main.java
java Main
3.saveAs blahblah.bat
make sure that Main.java resides with your batch file and java path is set in env. variable
4 . double click on batch file, no need to open cmd explicitly tt will open itself on .bat execution