Index: trunk/src/lib/com/izforge/izpack/installer/UnpackerBase.java
===================================================================
--- trunk/src/lib/com/izforge/izpack/installer/UnpackerBase.java	(revision 2673)
+++ trunk/src/lib/com/izforge/izpack/installer/UnpackerBase.java	(working copy)
@@ -35,8 +35,7 @@
 import org.apache.regexp.RESyntaxException;
 
 import java.io.*;
-import java.net.MalformedURLException;
-import java.net.URL;
+import java.net.URI;
 import java.util.*;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipInputStream;
@@ -947,22 +946,16 @@
         fout.close();
     }
     
-    protected File getAbsolutInstallSource() throws MalformedURLException
+    protected File getAbsolutInstallSource() throws Exception
     {
         if (absolutInstallSource == null)
         {
-            URL url = getClass().getResource("/info");
-            if (url.getPath().startsWith("file:"))
+            URI uri = getClass().getResource("/info").toURI();
+            if (uri.getSchemeSpecificPart().startsWith("file:"))
             {
-                url = new URL(url.getFile());
+                uri = new URI(uri.getSchemeSpecificPart());
             }
-            String urlFile = url.getFile();
-            if (url.getAuthority() != null)
-            {
-                // we have a UNC path...
-                urlFile = "//" + url.getAuthority() + urlFile;
-            }
-            absolutInstallSource = new File(urlFile).getAbsoluteFile().getParentFile();
+            absolutInstallSource = new File(uri.getSchemeSpecificPart()).getAbsoluteFile().getParentFile();
             if (absolutInstallSource.getAbsolutePath().endsWith("!"))
             {
                 absolutInstallSource = absolutInstallSource.getParentFile();

