0
How can I convert file.java to file executable
Urgent help me
3 Answers
+ 6
Why is it urgent?
Take you time, do a Google search, study the results, test the different possibilities and in the end, decide what suits your needs.
https://stackoverflow.com/questions/147181/how-can-i-convert-my-java-program-to-an-exe-file
+ 3
If something is urgent, it would be better for you to take matters into your own hands rather than waiting on others. Check out the code below for some tips on how to research:
https://code.sololearn.com/W0uW3Wks8UBk/?ref=app
0
Open command prompt.
Go to the folder where your File.java exists.
Then type the below mentioned line.
javac File.java
This will give you a File.class file which is executable.