Java URI to URItoString(URI uri)

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

Description

UR Ito String

License

Apache License

Declaration

public static String URItoString(URI uri) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.net.URI;

public class Main {
    public static String URItoString(URI uri) {
        return uri == null ? null : uri.toString();
    }/*from   w ww  .j a  v a  2  s. c  o  m*/
}

Related

  1. toString(URI pathUri)
  2. toString(URI uri)
  3. toStringList(List list)
  4. toStringSet(Collection uris)
  5. toUnencodedString(URI uri)
  6. uriToString(URI[] uris)
  7. uriToString(URI[] uris)