Results 1 to 3 of 3
Thread: Jar files
- 09-17-2009, 01:51 PM #1
- 09-17-2009, 02:01 PM #2
Senior Member
- Join Date
- Aug 2009
- Posts
- 2,388
- Rep Power
- 6
Your question doesn't really make much sense. Perhaps you should read about jar files here and then maybe you will be able to ask a more specific question after that.
- 09-30-2009, 04:07 AM #3
A jar file is just another type of zip. Simply put, an archive format (optionally compressed). Most programs that can open zips, also have support for jars.
When you open a jar file, you will see possible different folders.
- META-INF contains the jar's manifest file, if any.
- The root directory contains any classes in the default package
- Folders (and subfolders) contain classes not in the default package.
The classes may be just the .class, or the .java might be included as well, if the source was included in the jar.
The file will also contain any resources (such as pictures, icons, etc.), if any, that were packaged along with the jar.CodesAway - codesaway.info
writing tools that make writing code a little easier
Similar Threads
-
working with files (text files)
By itaipee in forum New To JavaReplies: 1Last Post: 02-24-2009, 11:38 AM -
Behaving text files like binary files
By Farzaneh in forum New To JavaReplies: 2Last Post: 08-27-2008, 03:20 PM -
Text and image files within jar files
By erhart in forum Advanced JavaReplies: 8Last Post: 01-19-2008, 04:43 AM -
how to convert mpeg files to .wav files
By christina in forum New To JavaReplies: 1Last Post: 08-06-2007, 04:14 AM -
convert xls files into pdf files
By bbq in forum New To JavaReplies: 3Last Post: 07-20-2007, 03:56 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks