Here you can find the source of toURI(String uri)
public static URI toURI(String uri)
//package com.java2s; //License from project: Open Source License import java.net.URI; public class Main { public static URI toURI(String uri) { if (uri == null) return null; return URI.create(uri); }/*from ww w. j a v a 2 s.co m*/ }