Java URI Create getURI(File file)

Here you can find the source of getURI(File file)

Description

Get a URI version of the given file.

License

Open Source License

Parameter

Parameter Description
file The File to turn into a URI

Return

a URI for the given file

Declaration

public static URI getURI(File file) 

Method Source Code

//package com.java2s;
/**//from  ww  w  .  ja va 2s.c  o m
 * Distribution License:
 * JSword is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License, version 2.1 as published by
 * the Free Software Foundation. This program 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.
 *
 * The License is available on the internet at:
 *       http://www.gnu.org/copyleft/lgpl.html
 * or by writing to:
 *      Free Software Foundation, Inc.
 *      59 Temple Place - Suite 330
 *      Boston, MA 02111-1307, USA
 *
 * Copyright: 2005
 *     The copyright to this program is held by it's authors.
 *
 * ID: $Id$
 */

import java.io.File;

import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;

public class Main {
    /**
     * Get a URI version of the given file.
     * 
     * @param file
     *            The File to turn into a URI
     * @return a URI for the given file
     */
    public static URI getURI(File file) {
        return file.toURI();
    }

    /**
     * Convert an URL to an URI.
     * 
     * @param url
     *            to convert
     * @return the URI representation of the URL
     */
    public static URI toURI(URL url) {
        try {
            return new URI(url.toExternalForm());
        } catch (URISyntaxException e) {
            return null;
        }
    }
}

Related

  1. createURIWithFull(final String scheme, final String userInfo, final String host, final int port, final String path, final String query, final String fragment)
  2. getUri()
  3. getUri(File file)
  4. getURI(File file)
  5. getUri(File file)
  6. getURI(final String address)
  7. getURI(final String base, final String href)
  8. getURI(final String uri)
  9. getURI(List data, Integer col)

    HOME | Copyright © www.java2s.com 2016