All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mageddo.common.web.UriUtils Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.mageddo.common.web;

import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;

public class UriUtils {
	public static URI valueOf(String uri) {
		try {
			return new URI(uri);
		} catch (URISyntaxException e) {
			throw new IllegalArgumentException(e);
		}
	}

	public static URL urlValue(URI uri){
		try {
			return uri.toURL();
		} catch (MalformedURLException e) {
			throw new IllegalStateException(e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy