1

我有一个 JAR 文件,它包含在我的 JNLP 文件的资源部分中。这包含子文件夹中的大量图像。

用户应该能够稍后替换此 JAR 文件以添加/删除图像。

有没有办法枚举资源中的所有文件,比如说 .GIF 作为文件扩展名,或者甚至更好地指定像“images/*.gif”这样的模式(所以我只得到以“images”作为父目录的图像)。

另一种选择是编写一个反映文件结构的文本文件。通过这种方式,您可以逐行、逐个图像地运行它,但这意味着您必须更新两个地方,这对用户来说不是很友好。

4

1 回答 1

2

是的,您只需抓住 jar 并移至目录,然后枚举其中的文件:

public String[] getFiles() throws IOException {
   ArrayList<String> list = new ArrayList<String>();
   List<JarEntry> ents = new ArrayList<JarEntry>();
   Enumeration<JarEntry> e = null;

   URL jarp = getLocation();
   if (jarp != null) {
    jar = jarp.getProtocol().equalsIgnoreCase("jar") ? jarp : new URL("jar:" +                                                                                                                                                                                      jarp.toString() + "!/");
    JarFile jarf = null;
    try {
        jarf = AccessController.doPrivileged(
                new PrivilegedExceptionAction<JarFile>() {

                    @Override
                    public JarFile run() throws Exception {
                        JarURLConnection conn = (JarURLConnection) jar.openConnection();
                        conn.setUseCaches(false);
                        return conn.getJarFile();
                    }
                });
    } catch (PrivilegedActionException ex) {
        Logger.getLogger(LicenseLoader.class.getName()).log(Level.SEVERE, null, ex);
    }
    e = jarf.entries();
    while (e.hasMoreElements()) {
        JarEntry je = e.nextElement();
        if (!je.isDirectory()) {
            ents.add(je);
        }
    }
    for (JarEntry ent : ents) {
        if ((ent.getName().startsWith(pathName)) && (ent.getName().endsWith(".gif"))) {
            String name = ent.getName().replace(pathName, "");
            list.add(name);
        }
    }
 }
 return list.toArray(new String[list.size()]);
}
于 2012-11-01T18:49:52.377 回答