About 669,000 results
Open links in new tab
  1. How to extract .war files in java? ZIP vs JAR - Stack Overflow

    Feb 5, 2016 · 75 I have a web program where I want the user to be able to import a .war file and I can extract certain files out of the .war file. I have found two class libraries: java.util.zip.* and …

  2. How to unpackage and repackage a WAR file - Stack Overflow

    You could extract entire .war file (its zip after all), delete files, replace files, add files, modify files and repackage to .war archive file. But changing one file in a large .war archive this might be …

  3. java - How to open a EAR/WAR file in windows 7 - Super User

    19 I have a few EAR/WAR files which are Java archives and I would like Windows 7 to open these files the way it opens a file with extension zip. So I open this war file and in the list of softwares …

  4. Seeing contents of war file without extracting - Stack Overflow

    Dec 30, 2015 · Now, this war files gets stored in tomcat location under webapps directory. Is there a way to see the contents of this war without extracting? I know we can see the contents of …

  5. java - Linux command for extracting war file? - Stack Overflow

    Sep 30, 2010 · A war file is just a zip file with a specific directory structure. So you can use unzip or the jar tool for unzipping. But you probably don't want to do that. If you add the war file into …

  6. java - Unable to launch war in vsCode - Stack Overflow

    Dec 25, 2021 · .war is a archive file. You Must Open the file. You can rename the file to .tar and use any Tar Tape-archiver implementation. Or you can use 7zip to Open the file.

  7. Why no option to import a WAR file into Eclipse?

    Dec 4, 2016 · I have a WAR file for a Java project but when I try to import it into Eclipse, the only option is for archive files such as tar, zip, jar - nothing for war. Is this only an option in certain …

  8. Importing war file in eclipse - Stack Overflow

    Feb 21, 2019 · I have a WAR file with Java codebase. I need to decompile my war to a project in Eclipse To do that I install Eclipse Jee 2018-12 and I had clicked in File->import and I …

  9. How to Import Spring Boot (Maven project) war file in Eclipse for …

    Oct 12, 2023 · When importing a WAR file into an existing Web project, the imported Web deployment descriptor files are either not changed or overwritten by the ones included in the …

  10. java - How to unzip a WAR file in command line - Stack Overflow

    Apr 19, 2016 · First, I know it's possible to unzip a WAR file using jar in command line. The problem is that on the target machine, there is no JDK installed, only the JRE. And we can't …