hi,
i created project in java using eclipseIDE now the project is completed i have to create executable of that project that means i have to install that project on client side how should i do
thanx

Recommended Answers

All 3 Replies

Package it as a jarfile.

In addition to what masijade said:

Write a manifest file which could be as simple as
Main-Class: <MainClass Name>
Version: 1.0

Put this manifest file inside the JAR so that it runs when double-clicked if that's what you are looking for.

if you wanted to know how to put it in a .exe installer, the answer is: don't.
you'll force your users to have a Windows OS installed, which may not always be the case.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.