• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to create exe in java

 
Ranch Hand
Posts: 216
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear ranchar how can we create an exe file of java swing. I am creating the jar file by the following command as

jar cf first.jar c:\first.class
then from the above command it is creating a jar file but when i am sending the jar file to the desktop and executing that there is error as like below

Failed to load manifest attribute from
c:\first.class


why this error

is it mandatory to create a manifest file before craeting the jar file
and if yes then what i will eneter in manifest file at

java-Bean : true or false//because i am not creating a bean

Regard
Arun
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have a look at this...
http://java.sun.com/docs/books/tutorial/deployment/jar/

The manifest is required to tell the JVM, where the main class is and where the libraries for the application reside.

You should consider changing the title to this topic. I though you wanted to change the .jar to a .exe when I read the title.
 
A timing clock, fuse wire, high explosives and a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic