Java API Tutorial - Java URI.getRawFragment()








Syntax

URI.getRawFragment() has the following syntax.

public String getRawFragment()

Example

In the following code shows how to use URI.getRawFragment() method.

import java.net.URI;
import java.net.URISyntaxException;
/* ww w.  j  a v a  2s  . co m*/
public class Main {
  public static void main(String[] args) throws NullPointerException, URISyntaxException {
    URI uri = new URI("http://www.java2s.com");
    System.out.println("URI      : " + uri);
    System.out.println("Raw Fragment : " + uri.getRawFragment());
  }
}

The code above generates the following result.