1 3 19 20 package com.sun.org.apache.xml.internal.resolver.helpers; 21 22 import java.net.URL ; 23 import java.net.MalformedURLException ; 24 import java.io.File ; 25 26 42 public abstract class FileURL { 43 protected FileURL() { } 44 45 72 public static URL makeURL(String pathname) throws MalformedURLException { 73 86 File file = new File (pathname); 87 return file.toURL(); 88 } 89 } 90 | Popular Tags |