making an executable application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bhatiapria
    New Member
    • Oct 2007
    • 2

    #1

    making an executable application

    hi
    i have to make a program in java i just want to make it executatable by simply clicking on a desktop icon pls help me in doing this in an application
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by bhatiapria
    hi
    i have to make a program in java i just want to make it executatable by simply clicking on a desktop icon pls help me in doing this in an application
    This question has been asked before recently: compile your .java files and stick
    everything (including your resources) in a .jar file using the .jar tool. You can make
    your .jar an executable .jar file by adding a small manifest file to it. Check the
    jar tutorial for details.

    kind regards,

    Jos

    Comment

    Working...