We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
| Subject: |
|
type "jar cvf onjava.war" where with what? |
| Date: |
|
2006-04-14 03:11:35 |
| From: |
|
java_javaonly
|
Response to: type "jar cvf onjava.war" where with what?
|
|
jar means it is creating java archives
c --- creating
v - verbose name
f --file
here onjava.war file is created in directory where ur java is running ie jvm eg:
d:>jar -cvf first.war second
here u are creatin g war file of name first which will contain all files prsent in second(file name)
if it is present inD drive
actually they are nothing but like our zip files
which will occupy less pace on harddisk
that s it
|