/*
 * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code 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 General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.sun.webkit.network;

import java.net.MalformedURLException;
import static com.sun.webkit.network.URLs.newURL;

A collection of static utility methods dealing with network I/O.
/** * A collection of static utility methods dealing with network I/O. */
public final class Util {
The private default constructor. Ensures non-instantiability.
/** * The private default constructor. Ensures non-instantiability. */
private Util() { throw new AssertionError(); }
Converts a string representing a valid URL to an equivalent string suitable for passing into WebKit.
Params:
  • url – the string to be converted. Must represent a valid URL.
Throws:
Returns:the resulting string suitable for passing into WebKit.
/** * Converts a string representing a valid URL to an equivalent string * suitable for passing into WebKit. * @param url the string to be converted. Must represent a valid URL. * @return the resulting string suitable for passing into WebKit. * @throws NullPointerException if {@code url} is {@code null}. * @throws MalformedURLException if {@code url} is not a valid URL. */
public static String adjustUrlForWebKit(String url) throws MalformedURLException { if (newURL(url).getProtocol().equals("file")) { // If there are no slashes after "file:", WebKit will // assume two slashes and will treat the component // that follows as the hostname. The meaning of the resulting // URL will be very different from the one in Java. // We therefore change no slashes to three slashes here to // eliminate that inconsistency. // URLs with one or more slashes after "file:" have identical // meaning in both Java and WebKit and therefore don't // need to be modified. int pos = "file:".length(); if (pos < url.length() && url.charAt(pos) != '/') { url = url.substring(0, pos) + "///" + url.substring(pos); } } return url; } static String formatHeaders(String headers) { return headers.trim().replaceAll("(?m)^", " "); } }