Java从命名空间中排除基本目录

时间:2014-03-10 17:52:18

标签: java jar namespaces archive executable-jar

我正在尝试以编程方式创建一个可运行的jar文件。我使用以下代码:

添加方法:

private static void add(File source, JarOutputStream target) throws IOException
    {
      BufferedInputStream in = null;
      try
      {
        if (source.isDirectory())
        {
          String name = source.getPath().replace("\\", File.separator);
          if (!name.isEmpty())
          {
            if (!name.endsWith(File.separator))
              name += File.separator;
            JarEntry entry = new JarEntry(name);
            entry.setTime(source.lastModified());
            target.putNextEntry(entry);
            //target.closeEntry();
          }
          for (File nestedFile: source.listFiles())
            add(nestedFile, target);
          return;
        }

        JarEntry entry = new JarEntry(source.getPath().replace("\\", "/"));
        entry.setTime(source.lastModified());
        target.putNextEntry(entry);
        in = new BufferedInputStream(new FileInputStream(source));

        byte[] buffer = new byte[1024];
        while (true)
        {
          int count = in.read(buffer);
          if (count == -1)
            break;
          target.write(buffer, 0, count);
        }
        target.closeEntry();
      }
      finally
      {
        if (in != null)
          in.close();
      }
    }

其实施:

try {
            File[] files = new File("tmp").listFiles();
            for (File file : files) {
                System.out.println("Archiving: "+file.getName());
                add(file, target);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            target.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

我正在尝试将tmp目录的所有内容添加到我的jar中,但我不想在所有名称空间前加tmp.。我尝试使用此代码迭代tmp中的文件并添加它们,但我不断收到错误,说“没有这样的文件或目录”。我很确定这是因为它正在查看tmp目录之外。但是,当我将其更改为add(new File("tmp"+File.separator+file.getName()), target);时,我的命名空间中最终会出现“tmp”(因为我从tmp /目录开始)。有办法解决这个问题吗?

以下是一个例子:

我有一个包含Main-Class属性com.name.proj.ProjDriver的jar文件 当我将其解压缩到tmp文件夹时,我最终得到tmp/com/name/proj/ProjDriver.class中的文件。然后我使用旧jar中的清单对象重新压缩我的jar,仍然将主类指定为com.name.proj.ProjDriver,但现在它实际上是tmp.com.name.proj.ProjDriver。如何避免将tmp.作为所有命名空间的前缀?

1 个答案:

答案 0 :(得分:1)

用以下代码替换您的代码:

private static void add(File source, JarOutputStream target) throws IOException
    {
      BufferedInputStream in = null;
      try
      {
        if (source.isDirectory())
        {
          String name = source.getPath().replace("\\", File.separator);
          if (!name.isEmpty())
          {
            if (!name.endsWith(File.separator))
              name += File.separator;
            JarEntry entry = new JarEntry(name);
            entry.setTime(source.lastModified());
            target.putNextEntry(entry);
            //target.closeEntry();
          }
          for (File nestedFile: source.listFiles())
            try{add(nestedFile, target);}catch(IOException e){System.out.println(e);}
          return;
        }

        JarEntry entry = new JarEntry(source.getPath().replace("tmp\\","").replace("\\", "/"));
        entry.setTime(source.lastModified());
        target.putNextEntry(entry);
        in = new BufferedInputStream(new FileInputStream(source));

        byte[] buffer = new byte[1024];
        while (true)
        {
          int count = in.read(buffer);
          if (count == -1)
            break;
          target.write(buffer, 0, count);
        }
        target.closeEntry();
      }
      finally
      {
        if (in != null)
          in.close();
      }
    }

我改变了这一行:

JarEntry entry = new JarEntry(source.getPath().replace("tmp\\","").replace("\\", "/"));