Here you can find the source of getURI(List data, Integer col)HOMEJavaUURI CreategetURI(List data, Integer col)Description get URI License Open Source License Declaration public static URI getURI(List<Object> data, Integer col) throws URISyntaxException Method Source Code //package com.java2s; //License from project: Open Source License import java.net.URI; import java.net.URISyntaxException; import java.util.List; public class Main { public static URI getURI(List<Object> data, Integer col) throws URISyntaxException { if (col == null) return null; Object o = data.get(col); if (o == null) return null; String s = (String) o; return new URI(s); }/*from w ww .ja v a 2 s . com*/ } RelatedgetURI(File file)getUri(File file)getURI(final String address)getURI(final String base, final String href)getURI(final String uri)getURI(String bucket, String key)getURI(String host, int port, String path, boolean isHTTPS)GetURI(String host, String port, String resource)getURI(String path)
public static URI getURI(List<Object> data, Integer col) throws URISyntaxException
//package com.java2s; //License from project: Open Source License import java.net.URI; import java.net.URISyntaxException; import java.util.List; public class Main { public static URI getURI(List<Object> data, Integer col) throws URISyntaxException { if (col == null) return null; Object o = data.get(col); if (o == null) return null; String s = (String) o; return new URI(s); }/*from w ww .ja v a 2 s . com*/ }