Browse Source

again fuckit....

git-svn-id: http://repo.nplusc.de/svn/iZink@250 8b19561d-0d00-6744-8ac1-9afc8f58a8aa
masterX244 10 năm trước cách đây
mục cha
commit
9f396d189d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      ToolKit/src/de/nplusc/izc/tools/IOtools/ZipUtils.java

+ 1 - 1
ToolKit/src/de/nplusc/izc/tools/IOtools/ZipUtils.java

@@ -43,7 +43,7 @@ public void zipIt(String zipFile)
      for (String file : this.fileList)
      {
         System.out.println("File Added : " + file);
-        ZipEntry ze = new ZipEntry(source + File.separator + file);
+        ZipEntry ze = new ZipEntry(file);
         zos.putNextEntry(ze);
         try
         {