[jboss-svn-commits] JBoss Common SVN: r2306 - common-core/trunk/src/main/java/org/jboss/util/file.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Mar 27 04:54:39 EDT 2007


Author: dimitris at jboss.org
Date: 2007-03-27 04:54:39 -0400 (Tue, 27 Mar 2007)
New Revision: 2306

Modified:
   common-core/trunk/src/main/java/org/jboss/util/file/FileProtocolArchiveBrowserFactory.java
Log:
JBCOMMON-19, Deal with spaces in local file URIs

Modified: common-core/trunk/src/main/java/org/jboss/util/file/FileProtocolArchiveBrowserFactory.java
===================================================================
--- common-core/trunk/src/main/java/org/jboss/util/file/FileProtocolArchiveBrowserFactory.java	2007-03-27 08:53:48 UTC (rev 2305)
+++ common-core/trunk/src/main/java/org/jboss/util/file/FileProtocolArchiveBrowserFactory.java	2007-03-27 08:54:39 UTC (rev 2306)
@@ -1,52 +1,44 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2006, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.util.file;
 
-import java.net.URL;
-import java.net.URI;
-import java.net.URISyntaxException;
 import java.io.File;
+import java.net.URL;
 import java.util.Iterator;
 
 /**
  * comment
  *
  * @author <a href="bill at jboss.com">Bill Burke</a>
- * @version $Revision: 1.1 $
+ * @author <a href="dimitris at jboss.org">Dimitris Andreadis</a>
+ * @version $Revision: 2305 $
  */
 public class FileProtocolArchiveBrowserFactory implements ArchiveBrowserFactory
 {
 
    public Iterator create(URL url, ArchiveBrowser.Filter filter)
    {
-      File f = null;
-      try
-      {
-         f = new File(new URI(url.toString()));
-      }
-      catch (URISyntaxException e)
-      {
-         throw new RuntimeException("Not a valid URL: " + url, e);
-      }
+      File f = new File(url.getPath());
+      
       if (f.isDirectory())
       {
          return new DirectoryArchiveBrowser(f, filter);




More information about the jboss-svn-commits mailing list