StringTokenizer.nextToken(String delim) has the following syntax.
public String nextToken(String delim)
In the following code shows how to use StringTokenizer.nextToken(String delim) method.
/*from ww w . j av a 2 s .c o m*/ import java.util.StringTokenizer; public class Main { public static void main(String[] args) { // with delimeter StringTokenizer st = new StringTokenizer("tutorial/from/java2s.com"); // checking next token System.out.println("Next token is : " + st.nextToken("/")); System.out.println("Next token is : " + st.nextToken("/")); System.out.println("Next token is : " + st.nextToken("/")); } }
The code above generates the following result.