Java URI to Local Name getName(URI uri)

Here you can find the source of getName(URI uri)

Description

get Name

License

Open Source License

Declaration

public static String getName(URI uri) 

Method Source Code


//package com.java2s;

import java.net.*;

public class Main {
    public static String getName(URI uri) {
        String name = null;/*from  w  w w  . j a  v a  2s  .  co  m*/
        if (uri != null) {
            String path = uri.getPath();
            if (path != null) {
                int index = path.lastIndexOf('/');
                name = path.substring(index + 1);
            }
        }
        return name;
    }
}

Related

  1. getName(URI uri)
  2. getName(URI uri)
  3. getName(URI uri)
  4. getName(URI uri)
  5. getName(URI uri)
  6. getNameSpace(URI uri)
  7. getNameSpace(URI uri)