如何检测 JAR 文件?

发布于 2024-11-29 21:07:23 字数 229 浏览 0 评论 0原文

我如何知道输入流是否是 JAR 文件?

我可以使用以下方法检测 JAR 文件:

try {
  JarFile jar = new JarFile("file");
} catch(ZipException e) {
  // not a jar file
  ...
}

但是如果我只有输入流,我该怎么办?我需要将其写入文件吗?
有什么优雅的方式吗?

How could I know if a inputstream is a JAR file?

I can detect a JAR file by using:

try {
  JarFile jar = new JarFile("file");
} catch(ZipException e) {
  // not a jar file
  ...
}

But how should I do if I only have the inputstream? Do I need to write it to a file?
Any elegant way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难以启齿的温柔 2024-12-06 21:07:23

http ://download.oracle.com/javase/1.4.2/docs/api/java/util/jar/JarInputStream.html#JarInputStream(java.io.InputStream)

try {
  JarInputStream jar = new JarInputStream(inputStream);
} catch(Exception e) {
  // not a jar file
  ...
}

http://download.oracle.com/javase/1.4.2/docs/api/java/util/jar/JarInputStream.html#JarInputStream(java.io.InputStream)

try {
  JarInputStream jar = new JarInputStream(inputStream);
} catch(Exception e) {
  // not a jar file
  ...
}
把昨日还给我 2024-12-06 21:07:23

如果你想做一些智能预过滤,你可以寻找本地文件头签名字节:0x04034b50

If you want to do some intelligent prefiltering, you can look for the local file header signature byte: 0x04034b50

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文