How To Uncompress/Extract Java .war File

Umar Ashfaq
Eastros
Published in
1 min readApr 26, 2012
  1. Open terminal
  2. Go to the directory where .war file is placed with cd command.
  3. Issue this command to extract/un-compress war file
    $ jar -xvf my_war_file.war

Thats it!

--

--