Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Do I deploy the application? 1

Status
Not open for further replies.

cobweb

IS-IT--Management
May 5, 2002
95
0
0
GB
A big dumbo question...
I have written in JBuilder a nice little text utility.
However, how do I create this as a stand alone application to run on another pC?
What files should I use?
I have tried the Native Executable but the 2 .exe files created simply do not run. It does not even work on my PC - and i created the damn thing! - so it is not a JDK thing.
I am a complete novice at this so it is probably dumb but I really want to run this utility !
Thanks!!
 
pack the required classes up in a jar and deploy that as well as a JVM to the client machines.
If you make it an executable jar you can just call it using java -jar yourjar.jar
else you'll need something like java -cp yourjar.jar YourClass
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top