2

クラスパス内のフォルダーとファイルをcode反復処理し、クラスを決定し、ID を持つフィールドを取得して、logger. このコードを IDE で実行すると問題なく動作しますが、プロジェクトをJARファイルにパッケージ化し、このJARファイルを launch4j で EXE ファイルにパッケージ化すると、クラスを再度反復処理できなくなります。JAR/EXE ファイル内のクラスを反復しようとすると、次のパスが得られます。

file:/C:/ENTWICKLUNG/java/workspaces/MyProject/MyProjectTest/MyProjectSNAPSHOT.exe!/com/abc/def

JAR/EXE ファイル内のすべてのクラスを反復処理するにはどうすればよいですか?

public class ClassInfoAction extends AbstractAction
{
  /**
   * Revision/ID of this class from SVN/CVS.
   */
  public static String ID = "@(#) $Id ClassInfoAction.java 43506 2013-06-27 10:23:39Z $";

  private ClassLoader classLoader = ClassLoader.getSystemClassLoader();
  private ArrayList<String> classIds = new ArrayList<String>();
  private ArrayList<String> classes = new ArrayList<String>();
  private int countClasses = 0;

  @Override
  public void actionPerformed(ActionEvent e)
  {
    countClasses = 0;
    classIds = new ArrayList<String>();
    classes = new ArrayList<String>();

    getAllIds();

    Iterator<String> it = classIds.iterator();

    while (it.hasNext())
    {
      countClasses++;
      //here I print out the ID
    }
  }

  private void getAllIds()
  {
    String tempName;
    String tempAbsolutePath;

    try
    {
      ArrayList<File> fileList = new ArrayList<File>();
      Enumeration<URL> roots = ClassLoader.getSystemResources("com"); //it is a path like com/abc/def I won't do this path public
      while (roots.hasMoreElements())
      {
        URL temp = roots.nextElement();
        fileList.add(new File(temp.getPath()));
        GlobalVariables.LOGGING_logger.info(temp.getPath());
      }

      for (int i = 0; i < fileList.size(); i++)
      {
        for (File file : fileList.get(i).listFiles())
        {
          LinkedList<File> newFileList = null;
          if (file.isDirectory())
          {
            newFileList = (LinkedList<File>) FileUtils.listFiles(file, TrueFileFilter.INSTANCE, TrueFileFilter.INSTANCE);

            if (newFileList != null)
            {
              for (int j = 0; j < newFileList.size(); j++)
              {
                tempName = newFileList.get(j).getName();
                tempAbsolutePath = newFileList.get(j).getAbsolutePath();
                checkIDAndAdd(tempName, tempAbsolutePath);
              }
            }
          }
          else
          {
            tempName = file.getName();
            tempAbsolutePath = file.getAbsolutePath();
            checkIDAndAdd(tempName, tempAbsolutePath);
          }
        }
      }

      getIdsClasses();
    }
    catch (IOException e)
    {
    }
  }

  private void checkIDAndAdd(String name, String absolutePath)
  {
    if (name.endsWith(".class") && !name.matches(".*\\d.*") && !name.contains("$"))
    {
      String temp = absolutePath.replace("\\", ".");
      temp = temp.substring(temp.lastIndexOf(/* Class prefix */)); //here I put in the class prefix
      classes.add(FilenameUtils.removeExtension(temp));
    }
  }

  private void getIdsClasses()
  {
    for (int i = 0; i < classes.size(); i++)
    {
      String className = classes.get(i);

      Class<?> clazz = null;
      try
      {
        clazz = Class.forName(className);

        Field idField = clazz.getDeclaredField("ID");
        idField.setAccessible(true);

        classIds.add((String) idField.get(null));
      }
      catch (ClassNotFoundException e1)
      {
      }
      catch (NoSuchFieldException e)
      {
      }
      catch (SecurityException e)
      {
      }
      catch (IllegalArgumentException e)
      {
      }
      catch (IllegalAccessException e)
      {
      }

    }
  }
}
4

1 に答える 1

7

任意の URL から File オブジェクトを作成して、通常のファイル システム トラバーサル メソッドを使用することはできません。現在、launch4j が違いを生むかどうかはわかりませんが、プレーンな JAR ファイルの内容を繰り返し処理する場合は、公式 API を使用できます。

JarURLConnection connection = (JarURLConnection) url.openConnection();
JarFile file = connection.getJarFile();
Enumeration<JarEntry> entries = file.entries();
while (entries.hasMoreElements()) {
    JarEntry e = entries.nextElement();
    if (e.getName().startsWith("com")) {
        // ...
    }
}

上記のスニペットは、によって参照される JAR ファイル内のすべてのエントリurl、つまりファイルとディレクトリを一覧表示します。

于 2013-08-30T10:02:20.807 に答える