aspose file tools
The moose likes Beginning Java and the fly likes How to create and open .jar files Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "How to create and open .jar files" Watch "How to create and open .jar files" New topic
Author

How to create and open .jar files

matt or
Greenhorn

Joined: Sep 11, 2004
Posts: 5
Hi all,
I'm the beginner of JAVA programming.
as the topic, could any one can show me
Thanks

Matt
Marilyn de Queiroz
Sheriff

Joined: Jul 22, 2000
Posts: 9033
    
  10
Sun has a tutorial on jars.

The basic format of the command for creating a JAR file is:

jar cf jar-file input-file(s)

The basic format of the command for viewing the contents of a JAR file is:

jar tf jar-file
[ September 12, 2004: Message edited by: Marilyn de Queiroz ]

JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to create and open .jar files