Java Path to URL getUrlPath(URL url)

Here you can find the source of getUrlPath(URL url)

Description

Returns the path portion from the given URL.

License

Apache License

Parameter

Parameter Description
url URL.

Return

Path from the URL.

Declaration

public static String getUrlPath(URL url) 

Method Source Code

//package com.java2s;
/**/*w  w w.  ja v  a2s  .c o m*/
 * Copyright 2006 Cordys R&D B.V. 
 * 
 * This file is part of the Cordys HTTP Connector. 
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.net.URL;

public class Main {
    /**
     * Returns the path portion from the given URL. This includes the path,
     * query and fragment.
     * 
     * @param url
     *            URL.
     * 
     * @return Path from the URL.
     */
    public static String getUrlPath(URL url) {
        StringBuilder buf = new StringBuilder(80);
        String tmp;

        if ((tmp = url.getPath()) != null) {
            if (!tmp.startsWith("/")) {
                buf.append("/");
            }

            buf.append(tmp);
        }

        if ((tmp = url.getQuery()) != null) {
            buf.append("?");
            buf.append(tmp);
        }

        if ((tmp = url.getRef()) != null) {
            buf.append("#");
            buf.append(tmp);
        }

        return buf.toString();
    }
}

Related

  1. getURLFromPath(String jarPath)
  2. getUrlFromPath(String path)
  3. getUrlFromUrlPath(String path)
  4. getURLPath(URI uri)
  5. getURLPath(URL repositoryURL)
  6. getURLPath(URL url)
  7. getUrlPath(URL url)
  8. getURLPathFromURI(String uri)
  9. getURLPathFromURN(String urn)