How to use my java application as a normal software?

by forme
3 replies
May be this is some thing interesting-or may be stupid, I don't know.
This is what, I just created a very small java application(using javax.swing.*) and this is what it does, it asks two number inputs from the user and when the user press enter after that, it returns the sum of them on a default small window.
But I code this with notepad and saved as somename.java and I compiled this in cmd.
So this is my question, how can I run this application as a normal software like that we click on the notepad icon on the desktop and opens it.
Can I run this by creating something like an icon and click it to open my simple user interface.
I don't know much about java. So please explain me this. Thanks all.
#application #java #normal #software
  • Profile picture of the author CNJ
    You should read the documentation and find how to package your application into a JAR file.

    Assuming the user has java installed, they can then double click your JAR file and run it like you would with any other executable.
    {{ DiscussionBoard.errors[7166167].message }}
  • Profile picture of the author crivion
    you need to use a java to exe compiler
    {{ DiscussionBoard.errors[7166899].message }}
  • Profile picture of the author gowthamgutha
    Make it installable? Is what you want? Then there is a solution.

    Go to Excelsior Jet, download it, it is free for open source applications. Download it and use it.

    First keep your java file in a jar file. For this,

    jar cf myjar.jar YourClass.class
    Then, in Excelsior Jet add this file to the classpath and thereafter everything is what you know
    {{ DiscussionBoard.errors[7256860].message }}

Trending Topics