--- old/modules/web/src/main/java/com/sun/webkit/network/URLLoader.java 2016-04-14 21:37:27.000000000 +0300 +++ new/modules/web/src/main/java/com/sun/webkit/network/URLLoader.java 2016-04-14 21:37:27.000000000 +0300 @@ -58,7 +58,7 @@ import java.util.zip.GZIPInputStream; import java.util.zip.InflaterInputStream; import javax.net.ssl.SSLHandshakeException; -import sun.net.www.ParseUtil; +import java.net.URLDecoder; /** * A runnable that loads a resource specified by a URL. @@ -255,7 +255,7 @@ } if (System.getProperty("os.name").startsWith("Windows")) { - String path = ParseUtil.decode(url.getPath()); + String path = URLDecoder.decode(url.getPath()); path = path.replace('/', '\\'); path = path.replace('|', ':'); File file = new File("\\\\" + host + path);