Click here to Skip to main content
15,921,452 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have created one project in java front end and oracle as back end ,project is completed .But I don't know how to create a executable file on any another system so that it can be started without any installation of java or oracle software
pls give your support.Its in urgency
regards
Posted

Generally speaking you cannot create executable files from Java programs. Java compiles into bytecode which runs within the Java Virtual Machine, and thus any machine that is to run your program will need the latest JVM and runtime as minimum. I'm not sure about Oracle but I guess you just need to ensure the Java library that supports it is also installed.
 
Share this answer
 
Use your IDE to do that.
Eclipse: You have a link "Export" in the Explorer Context Menu. Follow the wizard.
Netbeans: You have a link "Build" in the Explorer Context Menu. The Build goes to "project/dist".
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900