使用java代码检测jar内的main.

前端之家收集整理的这篇文章主要介绍了使用java代码检测jar内的main.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图检测jar中哪个类包含main或提供的方法名称(如果可能).

目前我有以下代码

public static void getFromJars(String pathToAppJar) throws IOException{
    FileInputStream jar = new FileInputStream(pathToAppJar);
    ZipInputStream zipSteam = new ZipInputStream(jar);
    ZipEntry ze;
    while ((ze = zipSteam.getNextEntry()) != null) {
        System.out.println(ze.toString());          
    }
    zipSteam.close();
}

这将允许我在这些包下获取包和类,但我不知道是否有可能在类中获取方法.
此外,我不知道这种方法是否适用于jar中的几个pkgs的情况,因为每个包都可以有一个带有main的类.

我很感激任何想法.

最佳答案
感谢fvu的评论,我最终得到了以下代码.

public static void getFromJars(String pathToAppJar) throws IOException,ClassNotFoundException
{
    FileInputStream jar = new FileInputStream(pathToAppJar);
    ZipInputStream zipSteam = new ZipInputStream(jar);
    ZipEntry ze;
    URL[] urls = { new URL("jar:file:" + pathToAppJar+"!/") };
    URLClassLoader cl = URLClassLoader.newInstance(urls);

    while ((ze = zipSteam.getNextEntry()) != null) {
        // Is this a class?
        if (ze.getName().endsWith(".class")) {
            // Relative path of file into the jar.
            String className = ze.getName();

            // Complete class name
            className = className.replace(".class","").replace("/",".");
            Class

删除了使用找到的方法代码,因为这对于这个答案并不重要

原文链接:https://www.f2er.com/java/437218.html

猜你在找的Java相关文章