The problem is we try to use JarFile class to determine whether a file is Jar file or not.
However, if we do it this way, a docx file will also be considered as a Jar file.
Because the docx file is actually a zip file.
Here is my code:
public static boolean detectJarFile(String file) throws IOException {
try {
JarFile jarFile = new JarFile(file);
} catch (java.util.zip.ZipException e) {
// the uploaded file is NOT JAR file
return false;
}
return true;
}
How can I know whether a file is really a Jar file or not?
Any idea?