Hello, I am completely new to Java, and I was wondering what program
to use when coding in Java.
I want to make a .exe file if that is possible. Thanks in advance
for any help, I appreciate it.
Hi @scoutkill43, welcome to Java.
If you are beginning in Java, a pretty easy to figure out IDE is NetBeans. You can find that here.
Rather than compiling java into .exe
files, you can instead try exporting it into a .jar
file, which will run similarly to a .exe
file. If you’re looking for a much more complex way to convert your .jar
file into a .exe
file later on, you can try looking at this stackoverflow thread.
Happy Coding!
3 Likes
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.