Here you can find the source of URItoString(URI uri)
public static String URItoString(URI uri)
//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*/ }