Java URI.normalize()
Syntax
URI.normalize() has the following syntax.
public URI normalize()
Example
In the following code shows how to use URI.normalize() method.
import java.net.URI;
import java.net.URISyntaxException;
// ww w. j av a 2 s .co m
public class Main {
public static void main(String[] args) throws URISyntaxException {
URI uri = new URI("http://java2s.com/./");
System.out.println("Normalized URI = " + uri.normalize());
}
}
Output: